summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2016-03-20 17:09:13 +0100
committer hap <happppp@users.noreply.github.com>2016-03-20 17:09:13 +0100
commit17eccd74d748d6656e360dd960223fd79ed090ea (patch)
treeb8a7aea979e93426325dda5d16794f2a6936e06c /src/devices/video
parent3f86b60153c3c8ce55455b71983fd6bf000bc53e (diff)
removed double string in some instances of "Fatal error: Error: x"
Diffstat (limited to 'src/devices/video')
-rw-r--r--src/devices/video/tms9927.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/tms9927.cpp b/src/devices/video/tms9927.cpp
index 5a9a0b3e960..9c45dab00ca 100644
--- a/src/devices/video/tms9927.cpp
+++ b/src/devices/video/tms9927.cpp
@@ -79,7 +79,7 @@ crt5057_device::crt5057_device(const machine_config &mconfig, const char *tag, d
void tms9927_device::device_start()
{
assert(clock() > 0);
- if (!(m_hpixels_per_column > 0)) fatalerror("ERROR: TMS9927: number of pixels per column must be explicitly set using MCFG_TMS9927_CHAR_WIDTH()!\n");
+ if (!(m_hpixels_per_column > 0)) fatalerror("TMS9927: number of pixels per column must be explicitly set using MCFG_TMS9927_CHAR_WIDTH()!\n");
/* copy the initial parameters */
m_clock = clock();