diff options
-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; |