diff options
author | 2022-06-12 16:37:11 +0200 | |
---|---|---|
committer | 2022-06-12 16:37:35 +0200 | |
commit | ad1f6584d52a870576b5e3997bd77c729e3d3425 (patch) | |
tree | 76efcc95fbc1a548cebc9768071a79fa5c73b533 /src/devices/cpu/rw5000/b6000.cpp | |
parent | 3880d65f7fdf2a2e4c61e17ff2938b3e9da4e2cd (diff) |
goldnaxe: easier/easy dipswitch setting was the wrong way around [Jose Tejada]
Diffstat (limited to 'src/devices/cpu/rw5000/b6000.cpp')
-rw-r--r-- | src/devices/cpu/rw5000/b6000.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/rw5000/b6000.cpp b/src/devices/cpu/rw5000/b6000.cpp index f41ebfbbf48..3b18d4793b0 100644 --- a/src/devices/cpu/rw5000/b6000.cpp +++ b/src/devices/cpu/rw5000/b6000.cpp @@ -68,7 +68,7 @@ void b6000_cpu_device::device_reset() // digit segment decoder u16 b6000_cpu_device::decode_digit(u8 data) { - static u8 lut_segs[0x10] = + static const u8 lut_segs[0x10] = { // 0-9 same as B5000 0x3f, 0x06, 0x5b, 0x4f, 0x66, 0x6d, 0x7d, 0x07, 0x7f, 0x6f, |