summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/segaorun.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/segaorun.cpp')
-rw-r--r--src/mame/video/segaorun.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/segaorun.cpp b/src/mame/video/segaorun.cpp
index 9ebca95b3ea..1c8b0ae7f6d 100644
--- a/src/mame/video/segaorun.cpp
+++ b/src/mame/video/segaorun.cpp
@@ -89,7 +89,7 @@ uint32_t segaorun_state::screen_update_shangon(screen_device &screen, bitmap_ind
{
// if the color is set to maximum, shadow pixels underneath us
if ((pix & 0x03f0) == 0x03f0)
- dest[x] += (m_paletteram[dest[x]] & 0x8000) ? m_palette_entries*2 : m_palette_entries;
+ dest[x] += m_palette_entries;
// otherwise, just add in sprite palette base
else
@@ -156,7 +156,7 @@ uint32_t segaorun_state::screen_update_outrun(screen_device &screen, bitmap_ind1
{
// if the shadow flag is set, this triggers shadow/hilight for pen 0xa
if ((pix & 0x400f) == 0x400a)
- dest[x] += (m_paletteram[dest[x]] & 0x8000) ? m_palette_entries*2 : m_palette_entries;
+ dest[x] += m_palette_entries;
// otherwise, just add in sprite palette base
else