mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-05 17:15:49 +00: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:
parent
9da6900595
commit
e59f770ccb
13 changed files with 112 additions and 65 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue