summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-09-03 22:56:32 -0400
committerLioncash <mathew1800@gmail.com>2014-09-03 22:59:13 -0400
commitcf390ba53787fe3583be2bc4c1702507e7eaecf7 (patch)
treea201976acea9dc31e407c648b4debd9897fd2ae1 /Source
parent89557f6c2fbc087de538017da46a6fc60e24b86e (diff)
OGL: Make rasters 2D array static in RasterFont
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/VideoBackends/OGL/RasterFont.cpp2
1 files changed, 1 insertions, 1 deletions
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},