Silent error mode
This commit is contained in:
parent
b4870a6e7e
commit
d271098464
3 changed files with 11 additions and 12 deletions
|
|
@ -260,15 +260,16 @@ namespace vks
|
|||
1, &imageMemoryBarrier);
|
||||
}
|
||||
|
||||
void exitFatal(std::string message, std::string caption)
|
||||
void exitFatal(std::string message, std::string caption, bool silent)
|
||||
{
|
||||
#if defined(_WIN32)
|
||||
MessageBox(NULL, message.c_str(), caption.c_str(), MB_OK | MB_ICONERROR);
|
||||
if (!silent) {
|
||||
MessageBox(NULL, message.c_str(), caption.c_str(), MB_OK | MB_ICONERROR);
|
||||
}
|
||||
#elif defined(__ANDROID__)
|
||||
LOGE("Fatal error: %s", message.c_str());
|
||||
#else
|
||||
std::cerr << message << "\n";
|
||||
#endif
|
||||
std::cerr << message << "\n";
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue