Make dual video card code use array
This commit is contained in:
@@ -897,7 +897,7 @@ machine_xt_t1000_init(const machine_t *model)
|
||||
t1000_nvr_load();
|
||||
nvr_set_ven_save(t1000_nvr_save);
|
||||
|
||||
if (gfxcard == VID_INTERNAL)
|
||||
if (gfxcard[0] == VID_INTERNAL)
|
||||
device_add(&t1000_video_device);
|
||||
|
||||
return ret;
|
||||
@@ -957,7 +957,7 @@ machine_xt_t1200_init(const machine_t *model)
|
||||
t1200_nvr_load();
|
||||
nvr_set_ven_save(t1200_nvr_save);
|
||||
|
||||
if (gfxcard == VID_INTERNAL)
|
||||
if (gfxcard[0] == VID_INTERNAL)
|
||||
device_add(&t1200_video_device);
|
||||
|
||||
if (hdc_current <= 1)
|
||||
|
||||
Reference in New Issue
Block a user