diff --git a/UI/NativeApp.cpp b/UI/NativeApp.cpp index b1fd6785e733..ade9e58d51cd 100644 --- a/UI/NativeApp.cpp +++ b/UI/NativeApp.cpp @@ -238,6 +238,8 @@ std::string NativeQueryConfig(std::string query) { } // Otherwise, some devices prefer the Java init so play it safe. return "true"; + } else if (query == "sustainedPerformanceMode") { + return std::string(g_Config.bSustainedPerformanceMode ? "1" : "0"); } else { return ""; }