Commit 11632a85 authored by Patrice Mandin's avatar Patrice Mandin

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

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40798
parent 28e5ce27
...@@ -132,7 +132,13 @@ static unsigned long F30_palette[256]; ...@@ -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) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment