From 4a9094482d9b557f402137a29fcfa5421604fe95 Mon Sep 17 00:00:00 2001 From: zturtleman Date: Fri, 17 Nov 2017 04:05:11 +0000 Subject: [PATCH] Fix client console text width --- engine/code/qcommon/q_shared.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/engine/code/qcommon/q_shared.h b/engine/code/qcommon/q_shared.h index b7e4e249..657204f1 100644 --- a/engine/code/qcommon/q_shared.h +++ b/engine/code/qcommon/q_shared.h @@ -424,12 +424,18 @@ extern vec3_t bytedirs[NUMVERTEXNORMALS]; #define TINYCHAR_HEIGHT 10 // END +// ZTM: Only change size for Q3Rally VMs, not client console text +#if defined CGAME || defined UI // STONELANCE - drawn pic is actually bigger because this // is the value after the letters are moved closer together //#define SMALLCHAR_WIDTH 8 #define SMALLCHAR_WIDTH 6 // END #define SMALLCHAR_HEIGHT 16 +#else +#define SMALLCHAR_WIDTH 8 +#define SMALLCHAR_HEIGHT 16 +#endif #define BIGCHAR_WIDTH 16 #define BIGCHAR_HEIGHT 16