mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Fix warnings found by StringFromFormat having printf style checking.
This commit is contained in:
@ -155,7 +155,7 @@ void GetStringVA(std::string& _rOutBuffer, u32 strReg)
|
||||
|
||||
case 'p':
|
||||
// Override, so 64bit dolphin prints 32bit pointers, since the ppc is 32bit :)
|
||||
_rOutBuffer += StringFromFormat("%x", Parameter);
|
||||
_rOutBuffer += StringFromFormat("%x", (u32)Parameter);
|
||||
break;
|
||||
|
||||
default:
|
||||
|
Reference in New Issue
Block a user