From 27c58cc97ec68e552fc834a2c796221be157d070 Mon Sep 17 00:00:00 2001 From: Anthony Samms Date: Wed, 24 Dec 2025 11:05:24 -0500 Subject: [PATCH] Update utils.py --- libs/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/utils.py b/libs/utils.py index cc6a98e..49012dc 100644 --- a/libs/utils.py +++ b/libs/utils.py @@ -200,7 +200,7 @@ class OutlinedText: if reload_font: codepoint_count = ray.ffi.new('int *', 0) codepoints = ray.load_codepoints(''.join(global_data.font_codepoints), codepoint_count) - global_data.font = ray.load_font_ex(str(Path(f'Skins/{global_data.config["paths"]["skin"]}/Modified-DFPKanteiryu-XB.ttf')), 40, codepoints, len(global_data.font_codepoints)) + global_data.font = ray.load_font_ex(str(Path(f'Skins/{global_data.config["paths"]["skin"]}/Graphics/Modified-DFPKanteiryu-XB.ttf')), 40, codepoints, len(global_data.font_codepoints)) logger.info(f"Reloaded font with {len(global_data.font_codepoints)} codepoints") return global_data.font