Skip to content

Commit

Permalink
Fix check for preference
Browse files Browse the repository at this point in the history
  • Loading branch information
Chumva committed Dec 5, 2024
1 parent 3919228 commit 9629a54
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static void init(@NonNull OsmandApplication app) {
else
NativeCore.load(assets, "");
}
if (NativeCore.isLoaded() && (!NativeCore.is64Bit() || app.getSettings().USE_OPENGL_RENDER.isSet())) {
if (NativeCore.isLoaded() && (NativeCore.is64Bit() || app.getSettings().USE_OPENGL_RENDER.isSet())) {
File directory = app.getAppPath("");
Logger.get().addLogSink(QIODeviceLogSink.createFileLogSink(new File(directory, LOG_FILE_NAME).getAbsolutePath()));

Expand Down

0 comments on commit 9629a54

Please sign in to comment.