[Scummvm-tracker] [ScummVM] #10118: MOHAWK: Riven: Screen doesn't fade to black when capturing Gehn.

Bastien Bouclet trac at scummvm.org
Fri Aug 11 17:21:57 CEST 2017


#10118: MOHAWK: Riven: Screen doesn't fade to black when capturing Gehn.
---------------------+----------------------------
  Reporter:  macca8  |      Owner:  (none)
      Type:  defect  |     Status:  new
  Priority:  high    |  Component:  Engine: Mohawk
Resolution:          |   Keywords:
      Game:  Riven   |
---------------------+----------------------------

Comment (by bgK):

 This is a script bug specific to the CD version of the game. The script
 tries to change card during a screen update and while still loading the
 previous card ...

 CD version script:
 {{{
 == Script 1 ==
 type: CardUpdate
 switch (agehn) {
         case 1:
                 switch (atrapbook) {
                         case 1:
                                 obutton = 1;
                                 transition(16);
                                 switchCard(2);
                                 break;
                 }
                 break;
         case 2:
                 activatePLST(5);
                 break;
         case 3:
                 activatePLST(5);
                 break;
 }
 }}}

 DVD version script:
 {{{
 == Script 1 ==
 type: CardUpdate
 switch (agehn) {
         case 1:
                 switch (atrapbook) {
                         case 1:
                                 obutton = 1;
                                 activatePLST(6);
                                 break;
                 }
                 break;
         case 2:
                 activatePLST(5);
                 break;
         case 3:
                 activatePLST(5);
                 break;
 }

 == Script 2 ==
 type: CardEnter
 switch (agehn) {
         case 1:
                 switch (atrapbook) {
                         case 1:
                                 obutton = 1;
                                 transition(16);
                                 switchCard(2);
                                 break;
                 }
                 break;
 }
 }}}

 I'll patch the script to match the DVD version.

--
Ticket URL: <https://bugs.scummvm.org/ticket/10118#comment:4>
ScummVM <https://bugs.scummvm.org>
ScummVM


More information about the Scummvm-tracker mailing list