From e4e8453ba6feae0340a059794595c76d23133798 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Sat, 25 Apr 2020 17:58:06 +0100 Subject: [PATCH] Make some logic more like vanilla --- src/Draw.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Draw.cpp b/src/Draw.cpp index ce2175e8..7a422b8d 100644 --- a/src/Draw.cpp +++ b/src/Draw.cpp @@ -661,12 +661,12 @@ void InitTextObject(const char *name) break; case 2: - height = 9; - width = 8; + height = 18; + width = 16; break; } - font = LoadFont(path, width * magnification, height * magnification); + font = LoadFont(path, width, height); } void PutText(int x, int y, const char *text, unsigned long color)