From f4a8005a8fa87f5d8d5ae70ef89bd8deca5d1f69 Mon Sep 17 00:00:00 2001 From: Wolfgang Thaller Date: Sun, 14 Sep 2014 23:59:35 +0200 Subject: [PATCH] fix console font --- App2/Console.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/App2/Console.cc b/App2/Console.cc index 9b71b080de..0e8558d670 100644 --- a/App2/Console.cc +++ b/App2/Console.cc @@ -20,6 +20,7 @@ #include "Console.h" #include "MacUtils.h" #include "Events.h" +#include "Fonts.h" Console *Console::currentInstance = NULL; @@ -29,10 +30,10 @@ Console::Console(GrafPtr port, Rect r) PortSetter setport(consolePort); InsetRect(&bounds, 2,2); - TextFont(9); + TextFont(kFontIDMonaco); TextSize(9); - cellSizeY = 10; + cellSizeY = 12; cellSizeX = CharWidth('M'); rows = (bounds.bottom - bounds.top) / cellSizeY;