diff --git a/changes/sdk/pr.311.gh.OpenXR-SDK-Source.md b/changes/sdk/pr.311.gh.OpenXR-SDK-Source.md new file mode 100644 index 000000000..5e05a397a --- /dev/null +++ b/changes/sdk/pr.311.gh.OpenXR-SDK-Source.md @@ -0,0 +1 @@ + Loader: Fix filename and native lib dir sequence for log diff --git a/src/loader/android_utilities.cpp b/src/loader/android_utilities.cpp index 807a77582..59d9a99b7 100644 --- a/src/loader/android_utilities.cpp +++ b/src/loader/android_utilities.cpp @@ -299,7 +299,7 @@ int getActiveRuntimeVirtualManifest(wrap::android::content::Context const &conte auto hasFunctions = cursor.getInt(cursor.getColumnIndex(active_runtime::Columns::HAS_FUNCTIONS)) == 1; __android_log_print(ANDROID_LOG_INFO, TAG, "Got runtime: package: %s, so filename: %s, native lib dir: %s, has functions: %s", - packageName.c_str(), libDir.c_str(), filename.c_str(), (hasFunctions ? "yes" : "no")); + packageName.c_str(), filename.c_str(), libDir.c_str(), (hasFunctions ? "yes" : "no")); auto lib_path = libDir + "/" + filename; cursor.close();