mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00: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:
parent
ba96ca289d
commit
311c76647d
6 changed files with 26 additions and 26 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue