From 424c9489c502ae4d4e91cfcc931db28d1b26d468 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Mon, 20 Feb 2023 00:55:03 +0600 Subject: [PATCH] machine.h: Make `chipset` `uintptr_t` --- src/include/86box/machine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/86box/machine.h b/src/include/86box/machine.h index 5a5b0bfda..4d1effe9a 100644 --- a/src/include/86box/machine.h +++ b/src/include/86box/machine.h @@ -279,7 +279,7 @@ typedef struct _machine_ { const char *name; const char *internal_name; uint32_t type; - uint32_t chipset; + uintptr_t chipset; int (*init)(const struct _machine_ *); uintptr_t pad, pad0, pad1, pad2; const machine_cpu_t cpu;