Milan and Hades Atari clones do not have an Atari video chip

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40798
This commit is contained in:
Patrice Mandin 2004-01-31 08:57:03 +00:00
parent 28e5ce27fc
commit 11632a8558

View file

@ -132,7 +132,13 @@ static unsigned long F30_palette[256];
static int XBIOS_Available(void)
{
unsigned long cookie_vdo;
unsigned long cookie_vdo, cookie_mil, cookie_hade;
/* Milan/Hades Atari clones do not have an Atari video chip */
if ( (Getcookie(C__MIL, &cookie_mil) == C_FOUND) ||
(Getcookie(C_hade, &cookie_hade) == C_FOUND) ) {
return 0;
}
/* Cookie _VDO present ? if not, assume ST machine */
if (Getcookie(C__VDO, &cookie_vdo) != C_FOUND) {