Ticket #8662: agi_compatibility.diff

File agi_compatibility.diff, 2.7 KB (added by SF/mthreepwood, 17 years ago)

Update to compatibility.php

  • compatibility.php

     
    147147        'Ween: The Prophecy'                                    => array('ween','95'),
    148148        );
    149149
     150$gamesAGI = array(
     151
     152        'The Black Cauldron'                                         => array('bc','95'),
     153        'Gold Rush!'                                                 => array('goldrush','95'),
     154        'King\'s Quest I'                                            => array('kq1','95'),
     155        'King\'s Quest II'                                           => array('kq2','95'),
     156        'King\'s Quest III'                                          => array('kq3','95'),
     157        'King\'s Quest IV'                                           => array('kq4','95'),
     158        'Leisure Suit Larry in the Land of the Lounge Lizards'       => array('lsl1','95'),
     159        'Mixed-Up Mother Goose'                                      => array('mixedup', '95'),
     160        'Manhunter 1: New York'                                      => array('mh1', '95'),
     161        'Manhunter 2: San Francisco'                                 => array('mh2', '95'),
     162        'Police Quest I: In Pursuit of the Death Angel'              => array('pq1', '95'),
     163        'Space Quest I: The Sarien Encounter'                        => array('sq1', '95'),
     164        'Space Quest II: Vohaul's Revenge'                           => array('sq2', '95'),
     165        );
     166
    150167$notes = array(
    151168"maniac"        => "No known issues, game is completable.".
    152169                   "<br>- Amiga, Atari ST, Commodore 64, Macintosh, NES and PC versions supported by this target".
     
    365382"nippon"        => "Game is completable".
    366383                   "<br>- Only DOS version is supported by this target".
    367384                   "<br>- Occasional minor graphical glitches"
     385"bc"            => "Game is completable".
     386"goldrush"      => "Game is completable".
     387"kq1"           => "Game is completable".
     388"kq2"           => "Game is completable".
     389"kq3"           => "Game is completable".
     390"kq4"           => "Game is completable".
     391"lsl1"          => "Game is completable".
     392"mixedup"       => "Game is completable".
     393"mh1"           => "Game is completable".
     394"mh2"           => "Game is completable".
     395"pq1"           => "Game is completable".
     396"sq1"           => "Game is completable".
     397"sq2"           => "Game is completable".
    368398);
    369399               
    370400// render the compatibility chart
     
    380410       
    381411                          );
    382412
    383         $arrayt = array_merge($gamesLucas, $gamesHE, $gamesOther);
     413        $arrayt = array_merge($gamesLucas, $gamesHE, $gamesOther, $gamesAGI);
    384414        while (list($name,$array) = each($arrayt))
    385415        {       
    386416
     
    429459        echo html_frame_end("&nbsp;");
    430460        echo html_p();
    431461
     462        displayGameList("Sierra AGI", $gamesAGI);
     463
     464        echo html_frame_end("&nbsp;");
     465        echo html_p();
     466
    432467        displayGameList("Other", $gamesOther);
    433468
    434469        echo html_frame_end("&nbsp;");