| 120 | } |
| 121 | |
| 122 | void AndroidConsole::processConsoleLine(const char *consoleLine) |
| 123 | { |
| 124 | if(consoleEnabled) |
| 125 | { |
| 126 | adprintf("%s\n", consoleLine); |
| 127 | } |
| 128 | else if(debugOutputEnabled) |
| 129 | { |
| 130 | adprintf("%s\n", consoleLine); |
| 131 | } |
| 132 | |
| 133 | } |
| 134 | |
| 135 | void AndroidConsole::clearInBuf() |
| 136 | { |
no test coverage detected