| 37 | } |
| 38 | |
| 39 | void flushMessage() |
| 40 | { |
| 41 | if (flush_subroutine() && sVisible == true) |
| 42 | { |
| 43 | JUTDirectPrint *manager = JUTDirectPrint::getManager(); |
| 44 | JUtility::TColor color = manager->getCharColor(); |
| 45 | manager->setCharColor(JUtility::TColor(255, 200, 200, 255)); |
| 46 | manager->drawString(16, 16, sMessageFileLine); |
| 47 | manager->drawString(16, 24, sMessageString); |
| 48 | manager->setCharColor(color); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | void flushMessage_dbPrint() |
| 53 | { |
no test coverage detected