Skip to content

Commit

Permalink
Milan and Hades Atari clones do not have an Atari video chip
Browse files Browse the repository at this point in the history
  • Loading branch information
pmandin committed Jan 31, 2004
1 parent 9ba573a commit 802ed26
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/video/xbios/SDL_xbios.c
Expand Up @@ -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) {
Expand Down

0 comments on commit 802ed26

Please sign in to comment.