summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2018-09-01 13:01:47 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2018-09-01 13:01:47 +1000
commitcdc0fb684fc06a6444db825c60c5cd2788da0836 (patch)
treec58a4f0300e97fb33acedb6740e29663f4e8edec
parentfec116b8533161834923880184deaabb297058eb (diff)
(nw) rc702 : fixed bug that had always been there, now causing crash at start.
-rw-r--r--src/mame/drivers/rc702.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/rc702.cpp b/src/mame/drivers/rc702.cpp
index e30dfa2b666..dd8bdc00eb3 100644
--- a/src/mame/drivers/rc702.cpp
+++ b/src/mame/drivers/rc702.cpp
@@ -15,7 +15,7 @@ ToDo:
- Other things
Issues:
-- Floppy disc error. It reads 0x780 bytes from the wrong sector then gives diskette error (use bios 1)
+- Floppy disc error. It reads 0x780 bytes from the wrong sector then gives diskette error (use bios 0)
****************************************************************************************************************/
@@ -241,7 +241,7 @@ WRITE8_MEMBER( rc702_state::port1c_w )
}
// monitor is orange even when powered off
-static const rgb_t our_palette[3] = {
+static const rgb_t our_palette[2] = {
rgb_t(0xc0, 0x60, 0x00), // off
rgb_t(0xff, 0xb4, 0x00), // on
};