From 86c4c02743726edd01b9878f3640129815704390 Mon Sep 17 00:00:00 2001 From: quou Date: Sun, 14 Jul 2024 00:18:56 +1000 Subject: Add a little font too --- 3de.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '3de.c') diff --git a/3de.c b/3de.c index a1bd9bb..98ae884 100644 --- a/3de.c +++ b/3de.c @@ -80,11 +80,11 @@ int entrypoint(int argc, const char** argv, Arena* a) { ren_clear(&r); ren_cleard(&r, f1 * 300); sprintf(buf, "FPS: %d", app->fps); - ren_text(&r, blue, 3, 3, buf); + ren_texts(&r, blue, 3, 3, buf); sprintf(buf, "CAP: %d", f.fps); - ren_text(&r, blue, 3, 13, buf); + ren_texts(&r, blue, 3, 8, buf); sprintf(buf, "MOUSE: %d, %d", app->mx, app->my); - ren_text(&r, blue, 3, 23, buf); + ren_texts(&r, blue, 3, 13, buf); draw_monkey(&r); ren_end(&r); app_end(app); -- cgit v1.2.3-54-g00ecf