diff options
| author | Max Horn | 2003-05-08 22:44:46 +0000 |
|---|---|---|
| committer | Max Horn | 2003-05-08 22:44:46 +0000 |
| commit | c63ec9d0084f341c39118cfe8d5a01434bc9bbf5 (patch) | |
| tree | 5804dc9e67adc749a3fc770d886c66db2248540d /scumm/scummvm.cpp | |
| parent | 4d7f7a8c80fdf78cf29f8517546a5a2a89694bab (diff) | |
| download | scummvm-rg350-c63ec9d0084f341c39118cfe8d5a01434bc9bbf5.tar.gz scummvm-rg350-c63ec9d0084f341c39118cfe8d5a01434bc9bbf5.tar.bz2 scummvm-rg350-c63ec9d0084f341c39118cfe8d5a01434bc9bbf5.zip | |
added a v2 charset rendered (with a hardcoded font take from german zak); enabled verbs in zak (well, they are drawn at least :-)
svn-id: r7398
Diffstat (limited to 'scumm/scummvm.cpp')
| -rw-r--r-- | scumm/scummvm.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 7fb70eee68..e7fc80fcfd 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -664,8 +664,10 @@ void Scumm::scummInit() { setupEGAPalette(); } - if (_features & GF_AFTER_V3) - _charset = new CharsetRendererOld256(this); + if (_features & GF_AFTER_V2) + _charset = new CharsetRendererV2(this); + else if (_features & GF_AFTER_V3) + _charset = new CharsetRendererV3(this); else if (_features & GF_AFTER_V8) _charset = new CharsetRendererNut(this); else |
