From 9826cd9e73593e33a0b6eb0a7b9cc880e1a93f9f Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Tue, 26 Apr 2022 20:36:33 -0700 Subject: [PATCH] Use the terminal16x16 font for the 01 script --- 01_fixed_size_console.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_fixed_size_console.py b/01_fixed_size_console.py index 41608a2..1174037 100644 --- a/01_fixed_size_console.py +++ b/01_fixed_size_console.py @@ -10,7 +10,7 @@ def main() -> None: # Load the font, a 32 by 8 tile font with libtcod's old character layout. tileset = tcod.tileset.load_tilesheet( - "dejavu10x10_gs_tc.png", 32, 8, tcod.tileset.CHARMAP_TCOD, + "fonts/terminal16x16_gs_ro.png", 16, 16, tcod.tileset.CHARMAP_CP437, ) # Create the main console.