0x004BE621
| 105 | |
| 106 | // 0x004BE621 |
| 107 | [[noreturn]] void exitWithError(StringId titleStringId, StringId messageStringId) |
| 108 | { |
| 109 | char titleBuffer[256] = { 0 }; |
| 110 | char messageBuffer[256] = { 0 }; |
| 111 | StringManager::formatString(titleBuffer, 255, titleStringId); |
| 112 | StringManager::formatString(messageBuffer, 255, messageStringId); |
| 113 | Ui::showMessageBox(titleBuffer, messageBuffer); |
| 114 | |
| 115 | exitCleanly(); |
| 116 | } |
| 117 | |
| 118 | // 0x004BE65E |
| 119 | [[noreturn]] void exitCleanly() |
no test coverage detected