From a5a419a8caaf459b2c07450c0087231aea1a98db Mon Sep 17 00:00:00 2001 From: OBattler Date: Sat, 30 Jul 2022 23:36:12 +0200 Subject: [PATCH] The device config struct now has a local variable for local flags and points for up to two devices (neeeded for graphics cards and their RAMDAC's and clock chips). --- src/include/86box/device.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/include/86box/device.h b/src/include/86box/device.h index 47f9b2448..e1342eb74 100644 --- a/src/include/86box/device.h +++ b/src/include/86box/device.h @@ -80,6 +80,8 @@ typedef struct { const char *internal_name; int bios_type; int files_no; + uint32_t local; + const device_t *dev1, *dev2; const char **files; } device_config_bios_t;