Fix maximum amount of RAM on a few NEAT machine where it was set unrealistically high.
This commit is contained in:
@@ -3597,7 +3597,7 @@ const machine_t machines[] = {
|
|||||||
.flags = MACHINE_IDE | MACHINE_VIDEO,
|
.flags = MACHINE_IDE | MACHINE_VIDEO,
|
||||||
.ram = {
|
.ram = {
|
||||||
.min = 512,
|
.min = 512,
|
||||||
.max = 16384,
|
.max = 5120,
|
||||||
.step = 128
|
.step = 128
|
||||||
},
|
},
|
||||||
.nvrmask = 127,
|
.nvrmask = 127,
|
||||||
@@ -3637,7 +3637,7 @@ const machine_t machines[] = {
|
|||||||
.flags = MACHINE_FLAGS_NONE,
|
.flags = MACHINE_FLAGS_NONE,
|
||||||
.ram = {
|
.ram = {
|
||||||
.min = 512,
|
.min = 512,
|
||||||
.max = 16384,
|
.max = 8192,
|
||||||
.step = 128
|
.step = 128
|
||||||
},
|
},
|
||||||
.nvrmask = 127,
|
.nvrmask = 127,
|
||||||
|
|||||||
Reference in New Issue
Block a user