We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 373b143 commit 500bbe9Copy full SHA for 500bbe9
src/xenia/base/cvar_android.cc
@@ -11,6 +11,7 @@
11
12
#include "xenia/base/assert.h"
13
#include "xenia/base/cvar.h"
14
+#include "xenia/base/filesystem.h"
15
#include "xenia/base/main_android.h"
16
17
namespace cvar {
@@ -188,7 +189,7 @@ void ParseLaunchArgumentsFromAndroidBundle(jobject bundle) {
188
189
const char* cvar_string_value_utf =
190
jni_env->GetStringUTFChars(cvar_string_value, nullptr);
191
if (cvar_string_value_utf) {
- cvar_path->SetCommandLineValue(cvar_string_value_utf);
192
+ cvar_path->SetCommandLineValue(xe::to_path(cvar_string_value_utf));
193
jni_env->ReleaseStringUTFChars(cvar_string_value,
194
cvar_string_value_utf);
195
}
0 commit comments