1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-02-07 13:08:09 +02:00

Disable terminate handler on Android to fix Google Play reporter

This commit is contained in:
Ivan Savenko 2024-12-21 14:14:04 +00:00
parent aa775479f4
commit 5636b9076f

View File

@ -299,8 +299,10 @@ CConsoleHandler::CConsoleHandler():
GetConsoleScreenBufferInfo(handleErr, &csbi);
defErrColor = csbi.wAttributes;
#ifdef NDEBUG
#ifndef VCMI_ANDROID
SetUnhandledExceptionFilter(onUnhandledException);
#endif
#endif
#else
defColor = "\x1b[0m";
#endif