summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2017-03-21 19:33:09 +0000
committer smf- <smf-@users.noreply.github.com>2017-03-21 19:34:32 +0000
commited1d22231ba769cfda8dde16ace2aefd291964df (patch)
tree57c5ba426d507fd03251c01e3efecaab627bede9
parent8b9ef0b09e604dc52509cb53cc63ea94366a4756 (diff)
disabling the screen uses the border colour [smf]
-rw-r--r--src/devices/sound/mos7360.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/mos7360.cpp b/src/devices/sound/mos7360.cpp
index 6d178e77753..b1ccf2264c5 100644
--- a/src/devices/sound/mos7360.cpp
+++ b/src/devices/sound/mos7360.cpp
@@ -627,7 +627,7 @@ void mos7360_device::drawlines(int first, int last)
{
for (int x = 0; x < m_bitmap.width(); x++)
{
- m_bitmap.pix32(line, x) = PALETTE_MOS[0];
+ m_bitmap.pix32(line, x) = PALETTE_MOS[FRAMECOLOR];
}
}
return;