From def2b95e7e27993c424dda6ac13811b45182652f Mon Sep 17 00:00:00 2001 From: Issac332 <119879937+Issac8658@users.noreply.github.com> Date: Fri, 3 Jul 2026 00:52:34 +0300 Subject: [PATCH] android check fix --- src/meow.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/meow.cpp b/src/meow.cpp index d3c2699..e328ca7 100644 --- a/src/meow.cpp +++ b/src/meow.cpp @@ -119,7 +119,13 @@ void crash(Exception::Type t, const char *fmt, ...){ out << "Internal storage path: " << SDL_GetAndroidInternalStoragePath() << std::endl; out << "External Storage path: " << SDL_GetAndroidExternalStoragePath() << ats::endl; out << "Cache path: " << SDL_GetAndroidCachePath() << std::endl; - out << " + + out << "Is ChromeBook? " << SDL_IsChromebook() << std::endl; + out << "Is Phone? " << SDL_IsPhone() << std::endl; + out << "Is Tablet? " << SDL_IsTablet() << std::endl; + out << "Is Samsung DeX? " << SDL_IsDeXMode() << std::endl; + out << "Is TV? " << SDL_IsTV() << std::endl; + out << "Is Ubuntu Touch? " << SDL_IsUbuntuTouch() << std::endl; #elif __EMSCRIPTEN__ out << "Emscripten start address of the stack: " << emscripten_stack_get_base() << std::endl; out << "Emscripten end address of the stack: " << emscripten_stack_get_end() << std::endl; @@ -128,12 +134,6 @@ void crash(Exception::Type t, const char *fmt, ...){ #elif __PSP__ out << "PSPdev MIPS Stack Trace: " << int pspDebugGetStackTrace() << std::endl; #endif - out << "Is ChromeBook? " << SDL_IsChromebook() << std::endl; - out << "Is Phone? " << SDL_IsPhone() << std::endl; - out << "Is Tablet? " << SDL_IsTablet() << std::endl; - out << "Is Samsung DeX? " << SDL_IsDeXMode() << std::endl; - out << "Is TV? " << SDL_IsTV() << std::endl; - out << "Is Ubuntu Touch? " << SDL_IsUbuntuTouch() << std::endl; out.close(); }else{ Debug() << "[CRASHLOG] Failed to write crashdump file";