4coder/platform_win32/win32_error_box.cpp

21 lines
266 B
C++
Raw Normal View History

2017-07-18 23:41:28 +00:00
/*
* Mr. 4th Dimention - Allen Webster
*
* 18.07.2017
*
* Linux fatal error message box.
*
*/
// TOP
internal void
system_error_box(char *msg){
LOGF("Fatal Error: %s\n", msg);
MessageBox_utf8(0, (u8*)msg, (u8*)"Error",0);
exit(1);
}
// BOTTOM