mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-09-14 22:36:01 -05: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:
@@ -151,7 +151,9 @@ void PrintDataBuffer(LogTypes::LOG_TYPE type, u8* _pData, size_t _Size, const ch
|
||||
std::string Temp;
|
||||
for (int i = 0; i < 16; i++)
|
||||
{
|
||||
Temp.append(StringFromFormat("%02x ", _pData[j++]));
|
||||
char Buffer[128];
|
||||
sprintf(Buffer, "%02x ", _pData[j++]);
|
||||
Temp.append(Buffer);
|
||||
|
||||
if (j >= _Size)
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user