summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices
diff options
context:
space:
mode:
author Nigel Barnes <Pernod70@users.noreply.github.com>2016-05-30 18:36:43 +0100
committer Nigel Barnes <Pernod70@users.noreply.github.com>2016-06-05 22:53:37 +0100
commit02879abeacb68921ea0d2fc66749757448700e38 (patch)
tree829e9a97d2336774f5fafc547a7ffc173d2531ea /src/devices
parent55724435b23c48e3dc07e4b49c93d74073e6d96c (diff)
terminal: fixed Color configuration
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/machine/terminal.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/terminal.cpp b/src/devices/machine/terminal.cpp
index 86388182f15..a2be090b261 100644
--- a/src/devices/machine/terminal.cpp
+++ b/src/devices/machine/terminal.cpp
@@ -319,7 +319,7 @@ WRITE8_MEMBER( generic_terminal_device::kbd_put )
***************************************************************************/
static MACHINE_CONFIG_FRAGMENT( generic_terminal )
- MCFG_SCREEN_ADD_MONOCHROME(TERMINAL_SCREEN_TAG, RASTER, rgb_t::green)
+ MCFG_SCREEN_ADD_MONOCHROME(TERMINAL_SCREEN_TAG, RASTER, rgb_t::white)
MCFG_SCREEN_REFRESH_RATE(50)
MCFG_SCREEN_VBLANK_TIME(ATTOSECONDS_IN_USEC(2500)) /* not accurate */
MCFG_SCREEN_SIZE(TERMINAL_WIDTH*8, TERMINAL_HEIGHT*10)