diff options
author | 2018-03-03 16:35:25 -0500 | |
---|---|---|
committer | 2018-03-03 16:35:25 -0500 | |
commit | 8a1f63ccee78a5c3f49b939bd7b72fe1b4db4599 (patch) | |
tree | f7895fbd964cfbc03c09c734ffac5df5f2f1a16a /src/devices/bus/isa/mach32.cpp | |
parent | ea9c23c9754f4db7d92c4c7606c409e4bce41743 (diff) |
pc_vga: Internalize palette (nw)
Diffstat (limited to 'src/devices/bus/isa/mach32.cpp')
-rw-r--r-- | src/devices/bus/isa/mach32.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/mach32.cpp b/src/devices/bus/isa/mach32.cpp index 8f58eb4858c..f2aa9d49872 100644 --- a/src/devices/bus/isa/mach32.cpp +++ b/src/devices/bus/isa/mach32.cpp @@ -191,8 +191,8 @@ uint32_t mach32_device::screen_update(screen_device &screen, bitmap_rgb32 &bitma if(depth == 8) { - colour0 = m_palette->pen(m_cursor_colour0_b); - colour1 = m_palette->pen(m_cursor_colour1_b); + colour0 = pen(m_cursor_colour0_b); + colour1 = pen(m_cursor_colour1_b); } else // 16/24/32bpp { |