diff options
| author | JosJuice <josjuice@gmail.com> | 2020-10-06 13:00:58 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2020-10-06 19:35:00 +0200 |
| commit | d64fc67b043e2950674cafe736324f6cf3928711 (patch) | |
| tree | 5de68a36fa961f3100be0e8d08ade0171687ac9b /Source/Android/jni/GameList/GameFile.cpp | |
| parent | dcaf2b96251b9a292bc5c122c1f76fbc552f55d3 (diff) | |
Show NKitness in file format string
To make people more aware that they're not using a normal disc image.
Diffstat (limited to 'Source/Android/jni/GameList/GameFile.cpp')
| -rw-r--r-- | Source/Android/jni/GameList/GameFile.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Android/jni/GameList/GameFile.cpp b/Source/Android/jni/GameList/GameFile.cpp index 21e8aa24aa..bdb7f3d8bd 100644 --- a/Source/Android/jni/GameList/GameFile.cpp +++ b/Source/Android/jni/GameList/GameFile.cpp @@ -66,7 +66,7 @@ JNIEXPORT jint JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_getRevision JNIEXPORT jint JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_getBlobType(JNIEnv* env, jobject obj); JNIEXPORT jstring JNICALL -Java_org_dolphinemu_dolphinemu_model_GameFile_getBlobTypeString(JNIEnv* env, jobject obj); +Java_org_dolphinemu_dolphinemu_model_GameFile_getFileFormatName(JNIEnv* env, jobject obj); JNIEXPORT jlong JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_getBlockSize(JNIEnv* env, jobject obj); JNIEXPORT jstring JNICALL @@ -167,9 +167,9 @@ JNIEXPORT jint JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_getBlobType } JNIEXPORT jstring JNICALL -Java_org_dolphinemu_dolphinemu_model_GameFile_getBlobTypeString(JNIEnv* env, jobject obj) +Java_org_dolphinemu_dolphinemu_model_GameFile_getFileFormatName(JNIEnv* env, jobject obj) { - return ToJString(env, DiscIO::GetName(GetRef(env, obj)->GetBlobType(), true)); + return ToJString(env, GetRef(env, obj)->GetFileFormatName()); } JNIEXPORT jlong JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_getBlockSize(JNIEnv* env, |
