浏览代码

fix: the scroll direction in staff of DOS version was inverted from original implementation

Pal Lockheart 7 年之前
父节点
当前提交
e3a94557f7
共有 1 个文件被更改,包括 1 次插入5 次删除
  1. 1 5
      script.c

+ 1 - 5
script.c

@@ -2940,12 +2940,8 @@ PAL_InterpretInstruction(
             // HACKHACK: to make the ending picture show correctly
             //
             PAL_ShowFBP(69, 0);
-            PAL_ScrollFBP(pScript->rgwOperand[0], pScript->rgwOperand[2], TRUE);
-         }
-         else
-         {
-            PAL_ScrollFBP(pScript->rgwOperand[0], pScript->rgwOperand[2], pScript->rgwOperand[1]);
          }
+         PAL_ScrollFBP(pScript->rgwOperand[0], pScript->rgwOperand[2], TRUE);
       }
       break;