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:
parent
28e5ce27fc
commit
11632a8558
1 changed files with 7 additions and 1 deletions
|
@ -132,7 +132,13 @@ static unsigned long F30_palette[256];
|
||||||
|
|
||||||
static int XBIOS_Available(void)
|
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 */
|
/* Cookie _VDO present ? if not, assume ST machine */
|
||||||
if (Getcookie(C__VDO, &cookie_vdo) != C_FOUND) {
|
if (Getcookie(C__VDO, &cookie_vdo) != C_FOUND) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue