about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/engine/client/text.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/client/text.cpp b/src/engine/client/text.cpp
index 79f95b30..ddc9429f 100644
--- a/src/engine/client/text.cpp
+++ b/src/engine/client/text.cpp
@@ -247,9 +247,9 @@ class CTextRender : public IEngineTextRender
 			m_FontTextureFormat, GL_UNSIGNED_BYTE, pData);
 	}
 
-	// 8k of data used for rendering glyphs
-	unsigned char ms_aGlyphData[(4096/64) * (4096/64)];
-	unsigned char ms_aGlyphDataOutlined[(4096/64) * (4096/64)];
+	// 32k of data used for rendering glyphs
+	unsigned char ms_aGlyphData[(1024/8) * (1024/8)];
+	unsigned char ms_aGlyphDataOutlined[(1024/8) * (1024/8)];
 
 	int GetSlot(CFontSizeData *pSizeData)
 	{