From 9f70fe2de92dab28bccd4e825651e7e5bfc016a3 Mon Sep 17 00:00:00 2001 From: Guenter Bartsch Date: Thu, 27 Jan 2022 20:19:39 +0100 Subject: [PATCH] font path bugfix --- tutorial/FontTutorial.bas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/FontTutorial.bas b/tutorial/FontTutorial.bas index e3798ef5..26cf6441 100644 --- a/tutorial/FontTutorial.bas +++ b/tutorial/FontTutorial.bas @@ -12,7 +12,7 @@ DIM AS FONT_t PTR emeraldfont = FONT ("emerald.font", 17) ' load a font from a specific directory -DIM AS FONT_t PTR myfont = FONT ("future.font", 30, "PROGDIR:/Fonts") +DIM AS FONT_t PTR myfont = FONT ("future.font", 30, "PROGDIR:Fonts") ' use our custom font