[Glide64] restored the explicit "Error" box titles
This commit is contained in:
parent
a10200cbce
commit
5952632d76
|
@ -336,7 +336,7 @@ void microcheck()
|
|||
|
||||
ReleaseGfx();
|
||||
#ifdef _WIN32
|
||||
MessageBox(gfx.hWnd, stdstr_f("Error: uCode crc not found in INI, using currently selected uCode\n\n%08lx", uc_crc).c_str(), NULL, MB_OK | MB_ICONEXCLAMATION);
|
||||
MessageBox(gfx.hWnd, stdstr_f("Error: uCode crc not found in INI, using currently selected uCode\n\n%08lx", uc_crc).c_str(), "Error", MB_OK | MB_ICONEXCLAMATION);
|
||||
#endif
|
||||
|
||||
ucode_error_report = FALSE; // don't report any more ucode errors from this game
|
||||
|
@ -347,7 +347,7 @@ void microcheck()
|
|||
|
||||
ReleaseGfx();
|
||||
#ifdef _WIN32
|
||||
MessageBox(gfx.hWnd, stdstr_f("Error: Unsupported uCode!\n\ncrc: %08lx", uc_crc).c_str(), NULL, MB_OK | MB_ICONEXCLAMATION);
|
||||
MessageBox(gfx.hWnd, stdstr_f("Error: Unsupported uCode!\n\ncrc: %08lx", uc_crc).c_str(), "Error", MB_OK | MB_ICONEXCLAMATION);
|
||||
#endif
|
||||
|
||||
ucode_error_report = FALSE; // don't report any more ucode errors from this game
|
||||
|
|
Loading…
Reference in New Issue