diff options
| author | Markus Wick <degasus@users.noreply.github.com> | 2016-10-31 12:39:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-31 12:39:27 +0100 |
| commit | d5ca153c26a9eae2084a3ff8d4a8d5cd1acf56ac (patch) | |
| tree | 5c888bea55127f46f2eb9c9fc7f3e79a588a4343 /Source/Android/jni/MainAndroid.cpp | |
| parent | 22779473bcfcb7f90f512606c0f584f0db450ba5 (diff) | |
| parent | 1081497cad9c70c5b66552e20bbc00657a05f0e5 (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.cpp | 2 |
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; } |
