mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 21:30:19 -06:00
Revert "Merge pull request #49 from Parlane/sprintf_tidy"
Change broke the build on Debian stable. This reverts commit28755439b3
, reversing changes made to64e01ec763
.
This commit is contained in:
@ -54,7 +54,9 @@ std::string CVolumeGC::GetUniqueID() const
|
||||
|
||||
std::string CVolumeGC::GetRevisionSpecificUniqueID() const
|
||||
{
|
||||
return GetUniqueID() + StringFromFormat("r%d", GetRevision());
|
||||
char rev[16];
|
||||
sprintf(rev, "r%d", GetRevision());
|
||||
return GetUniqueID() + rev;
|
||||
}
|
||||
|
||||
IVolume::ECountry CVolumeGC::GetCountry() const
|
||||
|
Reference in New Issue
Block a user