diff options
author | Gregory Montoir | 2005-09-10 20:03:53 +0000 |
---|---|---|
committer | Gregory Montoir | 2005-09-10 20:03:53 +0000 |
commit | 2948d6a10f5d6460e4339c3c138b9a266f04daf2 (patch) | |
tree | 35e0696392e52eefe3f4777c51d462a59a907902 /kyra | |
parent | 91bee5ac5d9375dd9d17efc924b15bafb19d21a0 (diff) | |
download | scummvm-rg350-2948d6a10f5d6460e4339c3c138b9a266f04daf2.tar.gz scummvm-rg350-2948d6a10f5d6460e4339c3c138b9a266f04daf2.tar.bz2 scummvm-rg350-2948d6a10f5d6460e4339c3c138b9a266f04daf2.zip |
only load the 6.fnt file for floppy version (which is unused in the introduction)
svn-id: r18804
Diffstat (limited to 'kyra')
-rw-r--r-- | kyra/kyra.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kyra/kyra.cpp b/kyra/kyra.cpp index b7ad42983f..ea67e701e1 100644 --- a/kyra/kyra.cpp +++ b/kyra/kyra.cpp @@ -189,7 +189,7 @@ int KyraEngine::go() { _quitFlag = false; uint32 sz; - if (_game != KYRA1DEMO) { + if (_game == KYRA1) { _screen->loadFont(Screen::FID_6_FNT, _res->fileData("6.FNT", &sz)); } _screen->loadFont(Screen::FID_8_FNT, _res->fileData("8FAT.FNT", &sz)); @@ -210,7 +210,7 @@ void KyraEngine::startup() { debug(9, "KyraEngine::startup()"); static const uint8 colorMap[] = { 0, 0, 0, 0, 12, 12, 12, 0, 0, 0, 0, 0 }; _screen->setTextColorMap(colorMap); - _screen->setFont(Screen::FID_6_FNT); +// _screen->setFont(Screen::FID_6_FNT); _screen->setAnimBlockPtr(3750); memset(_flagsTable, 0, sizeof(_flagsTable)); // XXX |