Browse Source

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

Pal Lockheart 6 years ago
parent
commit
e3a94557f7
1 changed files with 1 additions and 5 deletions
  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;