Calls to File::SetUserPath() no longer need to manually append directory separators.

This commit is contained in:
Admiral H. Curtiss 2021-11-22 03:40:31 +01:00
parent e54657254a
commit ab56f3ecbd
No known key found for this signature in database
GPG key ID: F051B4C4044F33FB
2 changed files with 5 additions and 14 deletions

View file

@ -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)