mirror of https://github.com/mgba-emu/mgba.git
Fix printf format string to use unsigned instead of signed
This commit is contained in:
parent
0b91681b2a
commit
b12f7a136e
|
@ -96,9 +96,9 @@ int main(int argc, char** argv) {
|
||||||
} else {
|
} else {
|
||||||
rendererName = "software";
|
rendererName = "software";
|
||||||
}
|
}
|
||||||
printf("%s,%i,%lli,%s\n", gameCode, frames, duration, rendererName);
|
printf("%s,%i,%llu,%s\n", gameCode, frames, duration, rendererName);
|
||||||
} else {
|
} else {
|
||||||
printf("%u frames in %lli microseconds: %g fps (%gx)\n", frames, duration, scaledFrames / duration, scaledFrames / (duration * 60.f));
|
printf("%u frames in %llu microseconds: %g fps (%gx)\n", frames, duration, scaledFrames / duration, scaledFrames / (duration * 60.f));
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue