engine: client: font: do not use OpenFile on WADs >_<

This commit is contained in:
Alibek Omarov 2023-02-03 17:49:06 +03:00
parent 77ea03a62c
commit a19d34035d
1 changed files with 8 additions and 6 deletions

View File

@ -79,24 +79,26 @@ qboolean Con_LoadFixedWidthFont( const char *fontname, cl_font_t *font, float sc
qboolean Con_LoadVariableWidthFont( const char *fontname, cl_font_t *font, float scale, int rendermode, uint texFlags )
{
fs_offset_t length;
qfont_t src;
file_t *fd;
byte *pfile;
int font_width, i;
if( font->valid )
return true;
fd = g_fsapi.Open( fontname, "r", false );
if( !fd )
pfile = g_fsapi.LoadFile( fontname, &length, false );
if( !pfile )
return false;
if( g_fsapi.Read( fd, &src, sizeof( qfont_t )) != sizeof( qfont_t ))
if( length < sizeof( src ))
{
g_fsapi.Close( fd );
Mem_Free( pfile );
return false;
}
g_fsapi.Close( fd );
memcpy( &src, pfile, sizeof( src ));
Mem_Free( pfile );
font->hFontTexture = CL_LoadFontTexture( fontname, texFlags, &font_width );
if( !font->hFontTexture )