summaryrefslogtreecommitdiff
path: root/Source/Android/jni/MainAndroid.cpp
diff options
context:
space:
mode:
authorMarkus Wick <degasus@users.noreply.github.com>2016-10-31 12:39:27 +0100
committerGitHub <noreply@github.com>2016-10-31 12:39:27 +0100
commitd5ca153c26a9eae2084a3ff8d4a8d5cd1acf56ac (patch)
tree5c888bea55127f46f2eb9c9fc7f3e79a588a4343 /Source/Android/jni/MainAndroid.cpp
parent22779473bcfcb7f90f512606c0f584f0db450ba5 (diff)
parent1081497cad9c70c5b66552e20bbc00657a05f0e5 (diff)
Merge pull request #4401 from JosJuice/rename-getuniqueid
DiscIO/SConfig: Rename GetUniqueID to GetGameID
Diffstat (limited to 'Source/Android/jni/MainAndroid.cpp')
-rw-r--r--Source/Android/jni/MainAndroid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Android/jni/MainAndroid.cpp b/Source/Android/jni/MainAndroid.cpp
index 9bb81b8379..d2fdf30bb6 100644
--- a/Source/Android/jni/MainAndroid.cpp
+++ b/Source/Android/jni/MainAndroid.cpp
@@ -347,7 +347,7 @@ static std::string GetGameId(std::string filename)
if (volume == nullptr)
return std::string();
- std::string id = volume->GetUniqueID();
+ std::string id = volume->GetGameID();
__android_log_print(ANDROID_LOG_INFO, DOLPHIN_TAG, "Game ID: %s", id.c_str());
return id;
}