diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-06-21 22:43:43 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-06-21 22:43:43 +0100 |
commit | 03d0053c9531c3f545025654d14541f8a89ce2f7 (patch) | |
tree | f88b9d57cfae40a2a754490d6554bc253c5adbdc /src/game.c | |
parent | b4c2ff850930cb29da1a331b17fcc8a9e561b5ff (diff) | |
download | gold-mine-run-03d0053c9531c3f545025654d14541f8a89ce2f7.tar.gz gold-mine-run-03d0053c9531c3f545025654d14541f8a89ce2f7.zip |
Make the score "gold"
Diffstat (limited to 'src/game.c')
-rw-r--r-- | src/game.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ static void hud_render() if (hud & HUD_SCORE) { sprintf(b, "%06li", score); - put_text(34, 4, b, 1); + put_text(34, 4, b, 5); } if (hud & HUD_TIME) |