mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -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:
@ -788,7 +788,7 @@ bool RunCode(const ARCode &arcode)
|
||||
current_code = &arcode;
|
||||
|
||||
LogInfo("Code Name: %s", arcode.name.c_str());
|
||||
LogInfo("Number of codes: %i", arcode.ops.size());
|
||||
LogInfo("Number of codes: %zu", arcode.ops.size());
|
||||
|
||||
for (const AREntry& entry : arcode.ops)
|
||||
{
|
||||
|
Reference in New Issue
Block a user