shithub: cstory

Download patch

ref: e4e8453ba6feae0340a059794595c76d23133798
parent: c5691d75701962c3603a068131adb9a543c8b1e8
author: Clownacy <Clownacy@users.noreply.github.com>
date: Sat Apr 25 13:58:06 EDT 2020

Make some logic more like vanilla

--- a/src/Draw.cpp
+++ b/src/Draw.cpp
@@ -661,12 +661,12 @@
 			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)