From f199ddcbcc14a0432b98181404fce45c9871d2b5 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sat, 30 Jul 2022 23:56:33 +0200 Subject: [PATCH] Changed the pointers to void pointers. --- src/include/86box/device.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/86box/device.h b/src/include/86box/device.h index 4b88442ae..25cf5c3f2 100644 --- a/src/include/86box/device.h +++ b/src/include/86box/device.h @@ -92,7 +92,7 @@ typedef struct { int bios_type; int files_no; uint32_t local, size; - const device_t *dev1, *dev2; + void *dev1, *dev2; const char **files; } device_config_bios_t;