OGL: Make rasters 2D array static in RasterFont

This commit is contained in:
Lioncash 2014-09-03 22:56:32 -04:00
parent 89557f6c2f
commit cf390ba537
1 changed files with 1 additions and 1 deletions

View File

@ -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},