4coder/platform_win32/win32_error_box.cpp

23 lines
341 B
C++

/*
* Mr. 4th Dimention - Allen Webster
*
* 18.07.2017
*
* Windows fatal error message box.
*
*/
// TOP
internal void
system_error_box(char *msg, b32 shutdown = true){
//LOGF("error box: %s\n", msg);
MessageBox_utf8(&shared_vars.scratch, 0, (u8*)msg, (u8*)"Error", 0);
if (shutdown){
exit(1);
}
}
// BOTTOM