Fix configuration file path on Android
This commit is contained in:
@@ -90,6 +90,13 @@ namespace Helpers {
|
||||
return false;
|
||||
}
|
||||
|
||||
static constexpr bool isAndroid() {
|
||||
#ifdef __ANDROID__
|
||||
return true;
|
||||
#endif
|
||||
return false;
|
||||
}
|
||||
|
||||
static void debug_printf(const char* fmt, ...) {
|
||||
if constexpr (buildingInDebugMode()) {
|
||||
std::va_list args;
|
||||
|
||||
Reference in New Issue
Block a user