mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
Get rid of some casts used with logging for size_t
Replaces them with the now-valid %z specifiers
This commit is contained in:
@ -481,7 +481,7 @@ static void LoadFileStateData(const std::string& filename, std::vector<u8>& ret_
|
||||
|
||||
if (!f.ReadBytes(&buffer[0], size))
|
||||
{
|
||||
PanicAlert("wtf? reading bytes: %i", (int)size);
|
||||
PanicAlert("wtf? reading bytes: %zu", size);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user