aboutsummaryrefslogtreecommitdiff
path: root/engines/lure/screen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/lure/screen.cpp')
-rw-r--r--engines/lure/screen.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/lure/screen.cpp b/engines/lure/screen.cpp
index 7e96484b2f..552e609b84 100644
--- a/engines/lure/screen.cpp
+++ b/engines/lure/screen.cpp
@@ -95,8 +95,7 @@ void Screen::paletteFadeIn(Palette *p) {
byte *pFinal = p->data();
byte *pCurrent = _palette->data();
- for (int palCtr = 0; palCtr < p->numEntries() * PALETTE_FADE_INC_SIZE; ++palCtr, ++pCurrent, ++pFinal)
- {
+ for (int palCtr = 0; palCtr < p->numEntries() * PALETTE_FADE_INC_SIZE; ++palCtr, ++pCurrent, ++pFinal) {
if (palCtr % PALETTE_FADE_INC_SIZE == (PALETTE_FADE_INC_SIZE - 1)) continue;
bool isDifferent = *pCurrent < *pFinal;