Fix maximum amount of RAM on a few NEAT machine where it was set unrealistically high.

This commit is contained in:
OBattler
2025-01-15 00:37:02 +01:00
parent c36e6be6e2
commit 4e8802c23e

View File

@@ -3597,7 +3597,7 @@ const machine_t machines[] = {
.flags = MACHINE_IDE | MACHINE_VIDEO,
.ram = {
.min = 512,
.max = 16384,
.max = 5120,
.step = 128
},
.nvrmask = 127,
@@ -3637,7 +3637,7 @@ const machine_t machines[] = {
.flags = MACHINE_FLAGS_NONE,
.ram = {
.min = 512,
.max = 16384,
.max = 8192,
.step = 128
},
.nvrmask = 127,