mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-18 16:03:05 +00:00
HDB: Replaced font name with a constant
This commit is contained in:
parent
7b7420144f
commit
02d855b066
@ -96,7 +96,7 @@ bool Gfx::init() {
|
||||
_fadeBuffer2.create(g_hdb->_screenWidth, g_hdb->_screenHeight, g_hdb->_format);
|
||||
|
||||
// Load Game Font
|
||||
if (!loadFont("normalprop"))
|
||||
if (!loadFont(HDB_FONT))
|
||||
return false;
|
||||
|
||||
// Read total number of tiles in game
|
||||
|
@ -32,6 +32,8 @@ namespace Common {
|
||||
|
||||
namespace HDB {
|
||||
|
||||
#define HDB_FONT "normalprop"
|
||||
|
||||
struct TileLookup {
|
||||
const char *filename;
|
||||
Tile *tData;
|
||||
|
Loading…
x
Reference in New Issue
Block a user