| 67 | } |
| 68 | |
| 69 | void IDebugConsole::DisplayString( const char * p_string ) |
| 70 | { |
| 71 | printf( "%s", p_string ); |
| 72 | |
| 73 | #ifdef DAEDALUS_BATCH_TEST_ENABLED |
| 74 | CBatchTestEventHandler * handler( BatchTest_GetHandler() ); |
| 75 | if( handler ) |
| 76 | handler->OnDebugMessage( p_string ); |
| 77 | #endif |
| 78 | |
| 79 | } |
| 80 | |
| 81 | void IDebugConsole::SetCurrentTerminalColour( ETerminalColour tc ) |
| 82 | { |
nothing calls this directly
no test coverage detected