fixes compilation error on visual studio, closes #5249

This commit is contained in:
Juan Linietsky 2016-06-17 10:34:44 -03:00
parent f0d9245ecf
commit 9f2f8c9130
2 changed files with 4 additions and 2 deletions

View file

@ -196,7 +196,8 @@ static const int _hidpi_font_charrects[191][8]={
{95,218,166,10,2,21,0,10},
};
static const int _hidpi_font_kerning_pair_count=0;
static const int _hidpi_font_kerning_pairs[0][3]={
static const int _hidpi_font_kerning_pairs[1][3]={
{0,0,0}
};
static const int _hidpi_font_img_width=256;
static const int _hidpi_font_img_height=512;

View file

@ -196,7 +196,8 @@ static const int _lodpi_font_charrects[191][8]={
{95,92,148,6,1,12,0,6},
};
static const int _lodpi_font_kerning_pair_count=0;
static const int _lodpi_font_kerning_pairs[0][3]={
static const int _lodpi_font_kerning_pairs[1][3]={
{0,0,0},
};
static const int _lodpi_font_img_width=128;
static const int _lodpi_font_img_height=256;