From cf390ba53787fe3583be2bc4c1702507e7eaecf7 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 3 Sep 2014 22:56:32 -0400 Subject: [PATCH] OGL: Make rasters 2D array static in RasterFont --- Source/Core/VideoBackends/OGL/RasterFont.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoBackends/OGL/RasterFont.cpp b/Source/Core/VideoBackends/OGL/RasterFont.cpp index 6d1fe829fc..34caa49ed8 100644 --- a/Source/Core/VideoBackends/OGL/RasterFont.cpp +++ b/Source/Core/VideoBackends/OGL/RasterFont.cpp @@ -16,7 +16,7 @@ static const int CHAR_HEIGHT = 13; static const int CHAR_OFFSET = 32; static const int CHAR_COUNT = 95; -const u8 rasters[CHAR_COUNT][CHAR_HEIGHT] = { +static const u8 rasters[CHAR_COUNT][CHAR_HEIGHT] = { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}, {0x00, 0x00, 0x18, 0x18, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18}, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x36, 0x36, 0x36},