OGL: Make rasters 2D array static in RasterFont
This commit is contained in:
parent
89557f6c2f
commit
cf390ba537
|
@ -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},
|
||||
|
|
Loading…
Reference in New Issue