4coder/platform_mac/mac_error_box.cpp

21 lines
244 B
C++
Raw Permalink Normal View History

/*
* Mr. 4th Dimention - Allen Webster
*
* 26.09.2017
*
* Mac error box implementation.
*
*/
// TOP
internal void
2021-01-17 00:14:12 +00:00
system_error_box(char *msg){
//LOGF("error box: %s\n", msg);
2017-11-10 21:21:57 +00:00
osx_error_dialogue(msg);
2021-01-17 00:14:12 +00:00
exit(1);
}
// BOTTOM