Merge pull request #4401 from JosJuice/rename-getuniqueid

DiscIO/SConfig: Rename GetUniqueID to GetGameID
This commit is contained in:
Markus Wick
2016-10-31 12:39:27 +01:00
committed by GitHub
45 changed files with 104 additions and 106 deletions

View File

@ -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;
}