diff options
| author | Léo Lam <leo@leolam.fr> | 2022-01-01 02:32:24 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-01 02:32:24 +0100 |
| commit | 9a61514073a95f378f705873921596e85e625f74 (patch) | |
| tree | ef14dce0f4db4ddbc5f766462d3475e92b4279be /Source/Android/jni/MainAndroid.cpp | |
| parent | c6225e451cbc0243c2713e850d65fc92047c47fc (diff) | |
| parent | 269ae6f7e8615b3110ca7389897b7f237231ffe8 (diff) | |
Merge pull request #10241 from AdmiralCurtiss/user-dir-consistency
Ensure user paths are stored in a consistent manner.
Diffstat (limited to 'Source/Android/jni/MainAndroid.cpp')
| -rw-r--r-- | Source/Android/jni/MainAndroid.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 4b94996796..4b2e6f5358 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -387,7 +387,7 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_SetCacheDire JNIEnv* env, jclass, jstring jDirectory) { std::lock_guard<std::mutex> guard(s_host_identity_lock); - File::SetUserPath(D_CACHE_IDX, GetJString(env, jDirectory) + DIR_SEP); + File::SetUserPath(D_CACHE_IDX, GetJString(env, jDirectory)); } JNIEXPORT jint JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_DefaultCPUCore(JNIEnv*, jclass) |
