diff options
| author | Léo Lam <leo@leolam.fr> | 2021-01-27 23:00:47 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-27 23:00:47 +0100 |
| commit | 96e3360f054c40c76a1e94162162e4ab22b60051 (patch) | |
| tree | 06689227b07e674909145636dba195189c00f6ed /Source/Android/jni/MainAndroid.cpp | |
| parent | 7290cd003210164dcbf77b96af36ffeda2a67af9 (diff) | |
| parent | 12aa1071cbb30269cd6526cfbbcd3c4143d584ac (diff) | |
Merge pull request #9452 from JosJuice/android-wii-saves
Android: Add "Import Wii Save"
Diffstat (limited to 'Source/Android/jni/MainAndroid.cpp')
| -rw-r--r-- | Source/Android/jni/MainAndroid.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp index 71c4fac565..ad91ce17c5 100644 --- a/Source/Android/jni/MainAndroid.cpp +++ b/Source/Android/jni/MainAndroid.cpp @@ -45,7 +45,6 @@ #include "Core/PowerPC/PowerPC.h" #include "Core/PowerPC/Profiler.h" #include "Core/State.h" -#include "Core/WiiUtils.h" #include "DiscIO/Blob.h" #include "DiscIO/Enums.h" @@ -596,14 +595,6 @@ JNIEXPORT void JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_ReloadLogger Common::Log::LogManager::Init(); } -JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_InstallWAD(JNIEnv* env, - jclass, - jstring jFile) -{ - const std::string path = GetJString(env, jFile); - return static_cast<jboolean>(WiiUtils::InstallWAD(path)); -} - JNIEXPORT jboolean JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_ConvertDiscImage( JNIEnv* env, jclass, jstring jInPath, jstring jOutPath, jint jPlatform, jint jFormat, jint jBlockSize, jint jCompression, jint jCompressionLevel, jboolean jScrub, jobject jCallback) |
