diff options
author | James Brown | 2003-01-16 08:04:34 +0000 |
---|---|---|
committer | James Brown | 2003-01-16 08:04:34 +0000 |
commit | 7e08dcc271298fa548febe65d044de73bd17c737 (patch) | |
tree | 701581a0e5080a0905b1205266011527923f89cb /scumm | |
parent | b9811d959465e26df83efaaac6c575fb6a629a7f (diff) | |
download | scummvm-rg350-7e08dcc271298fa548febe65d044de73bd17c737.tar.gz scummvm-rg350-7e08dcc271298fa548febe65d044de73bd17c737.tar.bz2 scummvm-rg350-7e08dcc271298fa548febe65d044de73bd17c737.zip |
Remove dodgy fix for verb backgrounds.
svn-id: r6476
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/verbs.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp index aa274c2a62..23d5a17053 100644 --- a/scumm/verbs.cpp +++ b/scumm/verbs.cpp @@ -132,7 +132,9 @@ void Scumm::drawVerb(int verb, int mode) return; } - if (_gameId != GID_CMI) + // FIXME: Commenting this out fixes some drawing glitches, + // but TOTALLY screws up scrolling conversation items. + //if (_gameId != GID_CMI) restoreVerbBG(verb); _string[4].charset = vs->charset_nr; |