aboutsummaryrefslogtreecommitdiff
path: root/sword1/logic.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sword1/logic.cpp')
-rw-r--r--sword1/logic.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sword1/logic.cpp b/sword1/logic.cpp
index 6dca18d031..7a20c1d5b1 100644
--- a/sword1/logic.cpp
+++ b/sword1/logic.cpp
@@ -889,12 +889,12 @@ int SwordLogic::fnSetFadeTargetPalette(BsObject *cpt, int32 id, int32 spritePal,
}
int SwordLogic::fnSetPaletteToFade(BsObject *cpt, int32 id, int32 c, int32 d, int32 e, int32 f, int32 z, int32 x) {
- warning("fnSetPaletteToFade(xx, %d, %d, %d, %d)", id, c, d, e);
+ SwordEngine::_systemVars.wantFade = true;
return SCRIPT_CONT;
}
int SwordLogic::fnSetPaletteToCut(BsObject *cpt, int32 id, int32 c, int32 d, int32 e, int32 f, int32 z, int32 x) {
- warning("fnSetPaletteToCut(xx, %d, %d, %d, %d)", id, c, d, e);
+ SwordEngine::_systemVars.wantFade = false;
return SCRIPT_CONT;
}