mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 03:35:26 +00:00
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…
x
Reference in New Issue
Block a user