Device config fix, phase 1.

This commit is contained in:
OBattler
2022-04-04 18:11:39 +02:00
parent 3fe794c59b
commit 3cec306ecf
3 changed files with 25 additions and 1 deletions

View File

@@ -364,7 +364,7 @@ video_card_has_config(int card)
{
if (video_cards[card].device == NULL) return(0);
return(video_cards[card].device->config ? 1 : 0);
return(device_has_config(video_cards[card].device) ? 1 : 0);
}