mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Order correctly and include z_zone.h
This commit is contained in:
parent
a2739b8032
commit
8063cc6c2f
1 changed files with 4 additions and 3 deletions
|
|
@ -13,6 +13,7 @@
|
||||||
#include "doomdef.h"
|
#include "doomdef.h"
|
||||||
#include "hu_stuff.h"
|
#include "hu_stuff.h"
|
||||||
#include "font.h"
|
#include "font.h"
|
||||||
|
#include "z_zone.h"
|
||||||
|
|
||||||
font_t fontv[MAX_FONTS];
|
font_t fontv[MAX_FONTS];
|
||||||
int fontc;
|
int fontc;
|
||||||
|
|
@ -28,8 +29,8 @@ FontCache (font_t *fnt)
|
||||||
{
|
{
|
||||||
fnt->font[i] = HU_CachePatch(
|
fnt->font[i] = HU_CachePatch(
|
||||||
"%s%.*d",
|
"%s%.*d",
|
||||||
fnt->digits,
|
|
||||||
fnt->prefix,
|
fnt->prefix,
|
||||||
|
fnt->digits,
|
||||||
c);
|
c);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -54,11 +55,11 @@ Font_DumbRegister (const font_t *sfnt)
|
||||||
|
|
||||||
fnt = &fontv[fontc];
|
fnt = &fontv[fontc];
|
||||||
|
|
||||||
|
memcpy(fnt, sfnt, sizeof (font_t));
|
||||||
|
|
||||||
if (!( fnt->font = ZZ_Alloc(sfnt->size * sizeof (patch_t *)) ))
|
if (!( fnt->font = ZZ_Alloc(sfnt->size * sizeof (patch_t *)) ))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
memcpy(fnt, sfnt, sizeof (font_t));
|
|
||||||
|
|
||||||
return fontc++;
|
return fontc++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue