Fix warnings found by StringFromFormat having printf style checking.

This commit is contained in:
Matthew Parlane
2014-02-07 01:38:08 +13:00
parent 09cc7e2ddf
commit 70d2592ffb
4 changed files with 4 additions and 4 deletions

View File

@ -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: