diff options
| author | Léo Lam <leo@leolam.fr> | 2021-06-13 12:53:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-13 12:53:49 +0200 |
| commit | 90a994f93780ef8a7cccfc02e00576692e0f2839 (patch) | |
| tree | 35d27fafedeb3096d199a5fac6b0f50eb3a805ed /Source/Android/jni/GameList/GameFileCache.cpp | |
| parent | 4e3e3bfd60e68deadfbe72fb06403e5895981f23 (diff) | |
| parent | d304d75aa5e2026a6649ae3359aa66eec43b9a02 (diff) | |
Merge pull request #9802 from JosJuice/android-game-file-cache-path
Android: Stop using custom path for GameFileCache
Diffstat (limited to 'Source/Android/jni/GameList/GameFileCache.cpp')
| -rw-r--r-- | Source/Android/jni/GameList/GameFileCache.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Android/jni/GameList/GameFileCache.cpp b/Source/Android/jni/GameList/GameFileCache.cpp index c611553aef..8428190f8a 100644 --- a/Source/Android/jni/GameList/GameFileCache.cpp +++ b/Source/Android/jni/GameList/GameFileCache.cpp @@ -27,10 +27,10 @@ static UICommon::GameFileCache* GetPointer(JNIEnv* env, jobject obj) extern "C" { #endif -JNIEXPORT jlong JNICALL Java_org_dolphinemu_dolphinemu_model_GameFileCache_newGameFileCache( - JNIEnv* env, jclass, jstring path) +JNIEXPORT jlong JNICALL +Java_org_dolphinemu_dolphinemu_model_GameFileCache_newGameFileCache(JNIEnv* env, jclass) { - return reinterpret_cast<jlong>(new UICommon::GameFileCache(GetJString(env, path))); + return reinterpret_cast<jlong>(new UICommon::GameFileCache()); } JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_model_GameFileCache_finalize(JNIEnv* env, |
