From 5598d2735a3314d2c4beb4d7ab39f1ab47b054dc Mon Sep 17 00:00:00 2001 From: curt Date: Sat, 7 Sep 2002 14:16:06 +0000 Subject: [PATCH] Read the desired menu font from the property system (or default to typewriter.txf if it's not specified.) --- src/GUI/gui.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GUI/gui.cxx b/src/GUI/gui.cxx index f0e40a9a4..8dd66e826 100644 --- a/src/GUI/gui.cxx +++ b/src/GUI/gui.cxx @@ -190,7 +190,7 @@ void guiInit() } // Install our fast fonts - fntpath.append( "typewriter.txf" ); + fntpath.append(fgGetString("/sim/font", "typewriter.txf")); guiFntHandle = new fntTexFont ; guiFntHandle -> load ( (char *)fntpath.c_str() ) ; puFont GuiFont ( guiFntHandle, 15 ) ; -- 2.39.2