diff options
| author | Max Horn | 2002-12-25 21:04:47 +0000 |
|---|---|---|
| committer | Max Horn | 2002-12-25 21:04:47 +0000 |
| commit | fca9ec09e7709ff4400d2a9a7fd76f4f21781006 (patch) | |
| tree | 2c9dd18841983469c4780c75d90762f8a167c048 /scumm/script_v5.cpp | |
| parent | f1808d20ac90f4212fd14aeaf544a8aaac6a3fbc (diff) | |
| download | scummvm-rg350-fca9ec09e7709ff4400d2a9a7fd76f4f21781006.tar.gz scummvm-rg350-fca9ec09e7709ff4400d2a9a7fd76f4f21781006.tar.bz2 scummvm-rg350-fca9ec09e7709ff4400d2a9a7fd76f4f21781006.zip | |
moved CharsetRendere into its own header/source file; changed Scumm::_charset into a pointer, to make it possible to use different implementations of it
svn-id: r6147
Diffstat (limited to 'scumm/script_v5.cpp')
| -rw-r--r-- | scumm/script_v5.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index 0b82f0dd85..f98d57f0a8 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -23,6 +23,7 @@ #include "stdafx.h" #include "scumm.h" #include "actor.h" +#include "charset.h" #include "intern.h" #include "sound.h" #include "verbs.h" @@ -655,7 +656,7 @@ void Scumm_v5::o5_cursorCommand() case 14: /* unk */ getWordVararg(table); for (i = 0; i < 16; i++) - _charset._colorMap[i] = _charsetData[_string[1].t_charset][i] = (unsigned char)table[i]; + _charset->_colorMap[i] = _charsetData[_string[1].t_charset][i] = (unsigned char)table[i]; break; } |
