From 0a9d71a42b48997ff9b63f847bcff3d2ce1ba1ca Mon Sep 17 00:00:00 2001 From: OBattler Date: Fri, 24 May 2024 03:58:37 +0200 Subject: [PATCH] Correct the NVR mask of the two Compaq Presario's, fixes crashes with the 2240. --- src/machine/machine_table.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/machine/machine_table.c b/src/machine/machine_table.c index 18bcc5a82..4cc5c5736 100644 --- a/src/machine/machine_table.c +++ b/src/machine/machine_table.c @@ -11576,7 +11576,7 @@ const machine_t machines[] = { .max = 131072, .step = 8192 }, - .nvrmask = 127, + .nvrmask = 511, .kbc_device = NULL, .kbc_p1 = 0xff, .gpio = 0xffffffff, @@ -11616,7 +11616,7 @@ const machine_t machines[] = { .max = 131072, .step = 8192 }, - .nvrmask = 127, + .nvrmask = 511, .kbc_device = NULL, .kbc_p1 = 0xff, .gpio = 0xffffffff,