Skip to content

Commit

Permalink
Merge pull request #8864 from sails/patch-1
Browse files Browse the repository at this point in the history
Update NativeActivity.java
  • Loading branch information
unknownbrackets committed Jul 21, 2016
2 parents 4a1d3c3 + ecf57bd commit 6320a87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/src/org/ppsspp/ppsspp/NativeActivity.java
Expand Up @@ -269,7 +269,7 @@ public void Initialize() {
NativeApp.init(model, deviceType, languageRegion, apkFilePath, dataDir, externalStorageDir, libraryDir, cacheDir, shortcutParam, Build.VERSION.SDK_INT, Build.BOARD);

// Allow C++ to tell us to use JavaGL or not.
javaGL = NativeApp.queryConfig("androidJavaGL") == "true";
javaGL = "true".equalsIgnoreCase(NativeApp.queryConfig("androidJavaGL"));

sendInitialGrants();

Expand Down

0 comments on commit 6320a87

Please sign in to comment.