summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2023-02-24 10:32:29 (EST)
committer P. J. McDermott <pj@pehjota.net>2023-02-24 10:32:29 (EST)
commit2bf01e5803269708e0a92fddefb0bae9883d20aa (patch)
treefe8c7ab3167e80b1a48969343f4cd72804928f6b /src
parent8ce13b8b9f1411a90e84ef6aee8c8409cb845acf (diff)
downloadoverworld-rpg-2bf01e5803269708e0a92fddefb0bae9883d20aa.zip
overworld-rpg-2bf01e5803269708e0a92fddefb0bae9883d20aa.tar.gz
overworld-rpg-2bf01e5803269708e0a92fddefb0bae9883d20aa.tar.bz2
demo: Fix format specifier
Diffstat (limited to 'src')
-rw-r--r--src/demo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demo.c b/src/demo.c
index 4e57b45..04269b4 100644
--- a/src/demo.c
+++ b/src/demo.c
@@ -154,6 +154,6 @@ demo(void)
for (; y > 5 * map->tileheight; y -= 1) DEMO(); /* Up */
for (; x < 17 * map->tilewidth ; x += 1) DEMO(); /* Right */
for (; y > 1 * map->tileheight; y -= 1) DEMO(); /* Up */
- debug("Rendered %d frames in %d milliseconds", i, total);
+ debug("Rendered %d frames in %u milliseconds", i, total);
}
}