aboutsummaryrefslogtreecommitdiff
path: root/queen/display.cpp
diff options
context:
space:
mode:
authorGregory Montoir2004-01-13 14:43:13 +0000
committerGregory Montoir2004-01-13 14:43:13 +0000
commit2f85714c605dfbe722d7e2b3d797aebd7808f3e1 (patch)
tree6f3bf45ecf351f2b465aa4597f5b6eb4eab92fae /queen/display.cpp
parentc39aa04c318b991337daecf7e348ad6044656b36 (diff)
downloadscummvm-rg350-2f85714c605dfbe722d7e2b3d797aebd7808f3e1.tar.gz
scummvm-rg350-2f85714c605dfbe722d7e2b3d797aebd7808f3e1.tar.bz2
scummvm-rg350-2f85714c605dfbe722d7e2b3d797aebd7808f3e1.zip
- wrong sentence was spoken when Joe was trying to 'pick up' a person
- clear command before switching rooms - clear texts at the end of cutaway (fix minor glitch in interview intro) svn-id: r12361
Diffstat (limited to 'queen/display.cpp')
-rw-r--r--queen/display.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/queen/display.cpp b/queen/display.cpp
index e809f6ce87..c3b70dc220 100644
--- a/queen/display.cpp
+++ b/queen/display.cpp
@@ -749,7 +749,7 @@ void Display::horizontalScroll(int16 scroll) {
}
void Display::setDirtyBlock(uint16 x, uint16 y, uint16 w, uint16 h) {
- if (!_fullRefresh) {
+ if (_fullRefresh < 2) {
uint16 ex = (x + w - 1) / D_BLOCK_W;
uint16 ey = (y + h - 1) / D_BLOCK_H;
x /= D_BLOCK_W;