From 375b940b2cac16d8ad6a8103b4a5715d81e7d799 Mon Sep 17 00:00:00 2001 From: Robbbert Date: Mon, 3 Apr 2017 10:50:30 +1000 Subject: [PATCH] (nw) Fixed the build (subCmd set but not used) --- src/devices/video/zeus2.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/video/zeus2.cpp b/src/devices/video/zeus2.cpp index cc6f6a8a6b5..282cf4550c9 100644 --- a/src/devices/video/zeus2.cpp +++ b/src/devices/video/zeus2.cpp @@ -1284,7 +1284,7 @@ void zeus2_device::zeus2_draw_model(uint32_t baseaddr, uint16_t count, int logit { int countneeded = 2; uint8_t cmd; - uint8_t subCmd; +// uint8_t subCmd; /* accumulate 2 words of data */ databuffer[databufcount++] = WAVERAM_READ32(base, curoffs * 2 + 0); @@ -1292,7 +1292,7 @@ void zeus2_device::zeus2_draw_model(uint32_t baseaddr, uint16_t count, int logit /* if this is enough, process the command */ cmd = databuffer[0] >> 24; - subCmd = (databuffer[1] >> 24) & 0xfc; +// subCmd = (databuffer[1] >> 24) & 0xfc; if ((cmd == 0x38) || (cmd == 0x2d)) { countneeded = zeus_quad_size;