display init errors on macOS

This commit is contained in:
tildearrow 2024-04-14 16:41:04 -05:00
parent e6bead147a
commit 31f9559f5e

View file

@ -393,7 +393,7 @@ void reportError(String what) {
logE("%s",what); logE("%s",what);
MessageBox(NULL,what.c_str(),"Furnace",MB_OK|MB_ICONERROR); MessageBox(NULL,what.c_str(),"Furnace",MB_OK|MB_ICONERROR);
} }
#elif defined(ANDROID) #elif defined(ANDROID) || defined(__APPLE__)
void reportError(String what) { void reportError(String what) {
logE("%s",what); logE("%s",what);
#ifdef HAVE_SDL2 #ifdef HAVE_SDL2