diff options
| author | JosJuice <josjuice@gmail.com> | 2019-08-13 18:01:27 +0200 |
|---|---|---|
| committer | JosJuice <josjuice@gmail.com> | 2019-09-25 12:25:33 +0200 |
| commit | 59f27ae4e1713d922fe71fc6ba95fbc399aac814 (patch) | |
| tree | 06200f016eba6dd38fbee1067232490b6d5af14d /Source/Android/jni/GameList/GameFile.cpp | |
| parent | edfb0f66b6685fe1d4314ca27cce9492a7937683 (diff) | |
GameFile: Support HBC-style XML metadata
This feature was originally exclusive to the previous iteration of
DolphinQt (the one that was the reason for the current iteration
being named DolphinQt2 initially).
https://bugs.dolphin-emu.org/issues/8949
Diffstat (limited to 'Source/Android/jni/GameList/GameFile.cpp')
| -rw-r--r-- | Source/Android/jni/GameList/GameFile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Android/jni/GameList/GameFile.cpp b/Source/Android/jni/GameList/GameFile.cpp index b9f7a28df4..b43f7b4402 100644 --- a/Source/Android/jni/GameList/GameFile.cpp +++ b/Source/Android/jni/GameList/GameFile.cpp @@ -84,13 +84,13 @@ JNIEXPORT jint JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_getPlatform JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_getTitle(JNIEnv* env,
jobject obj)
{
- return ToJString(env, GetRef(env, obj)->GetName());
+ return ToJString(env, GetRef(env, obj)->GetName(true));
}
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_getDescription(JNIEnv* env,
jobject obj)
{
- return ToJString(env, GetRef(env, obj)->GetDescription());
+ return ToJString(env, GetRef(env, obj)->GetDescription(true));
}
JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_model_GameFile_getCompany(JNIEnv* env,
|
