aboutsummaryrefslogtreecommitdiff
path: root/queen/display.cpp
diff options
context:
space:
mode:
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;