summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/konami/wecleman_v.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/konami/wecleman_v.cpp')
-rw-r--r--src/mame/konami/wecleman_v.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/konami/wecleman_v.cpp b/src/mame/konami/wecleman_v.cpp
index f35083d77f1..468b625d125 100644
--- a/src/mame/konami/wecleman_v.cpp
+++ b/src/mame/konami/wecleman_v.cpp
@@ -903,13 +903,13 @@ void wecleman_state::video_start()
K051316_CB_MEMBER(hotchase_state::hotchase_zoom_callback_1)
{
- *code |= (*color & 0x03) << 8;
- *color = (*color & 0xfc) >> 2;
+ code |= (color & 0x03) << 8;
+ color = (color & 0xfc) >> 2;
}
K051316_CB_MEMBER(hotchase_state::hotchase_zoom_callback_2)
{
- *color = ((*color & 0x3f) << 1) | ((*code & 0x80) >> 7);
+ color = ((color & 0x3f) << 1) | ((code & 0x80) >> 7);
}