summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/rainbow.c
diff options
context:
space:
mode:
author Scott Stone <tafoid@users.noreply.github.com>2013-09-02 03:37:18 +0000
committer Scott Stone <tafoid@users.noreply.github.com>2013-09-02 03:37:18 +0000
commitc690b478d9677ee1931e111ebc1eafca6da5ee7f (patch)
tree95533d1ccf8d7bfda6e91b75bb25df27f6b4499f /src/mess/drivers/rainbow.c
parent7ff3df2b463963e261877b29db4d1a72c1cb31d4 (diff)
(MESS) vtvideo.c : 132 column mode uses compressed characters with 1 filler pixel instead of 2. Bold implemented: 3 color palette and separate device_reset() on Rainbow. Double width line attribute fix. [Bavarese]
(MESS) vtvideo.h : separate device_reset(). New variable m_height_MAX for those parts of the code shared with VT-100. [Bavarese] (NESS) rainbow.c : changed GAME_NO_SOUND to GAME_IMPERFECT_COLORS. [Bavarese]
Diffstat (limited to 'src/mess/drivers/rainbow.c')
-rw-r--r--src/mess/drivers/rainbow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/drivers/rainbow.c b/src/mess/drivers/rainbow.c
index 1a90aaef2ce..300ca135c32 100644
--- a/src/mess/drivers/rainbow.c
+++ b/src/mess/drivers/rainbow.c
@@ -600,7 +600,7 @@ READ8_MEMBER( rainbow_state::diagnostic_r )
// printf("%02x DIP value ORed to diagnostic\n", ( m_inp1->read() | m_inp2->read() | m_inp3->read() ) );
return ( (m_diagnostic & (0xf1)) | ( m_inp1->read() |
- m_inp2->read() |
+ m_inp2->read() |
m_inp3->read() )
);
}
@@ -758,7 +758,7 @@ static MACHINE_CONFIG_START( rainbow, rainbow_state )
MCFG_SCREEN_VISIBLE_AREA(0, 80*10-1, 0, 25*10-1)
MCFG_SCREEN_UPDATE_DRIVER(rainbow_state, screen_update_rainbow)
MCFG_GFXDECODE(rainbow)
- MCFG_PALETTE_LENGTH(2)
+ MCFG_PALETTE_LENGTH(3)
MCFG_PALETTE_INIT_OVERRIDE(driver_device, monochrome_green)
MCFG_RAINBOW_VIDEO_ADD("vt100_video", video_interface)
@@ -796,4 +796,4 @@ ROM_END
/* Driver */
/* YEAR NAME PARENT COMPAT MACHINE INPUT STATE INIT COMPANY FULLNAME FLAGS */
-COMP( 1982, rainbow, 0, 0, rainbow, rainbow, driver_device, 0, "Digital Equipment Corporation", "Rainbow 100B", GAME_NOT_WORKING | GAME_NO_SOUND)
+COMP( 1982, rainbow, 0, 0, rainbow, rainbow, driver_device, 0, "Digital Equipment Corporation", "Rainbow 100B", GAME_NOT_WORKING | GAME_IMPERFECT_COLORS)