summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/zeus2.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2017-04-03 10:50:30 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2017-04-03 10:50:30 +1000
commit375b940b2cac16d8ad6a8103b4a5715d81e7d799 (patch)
treed2b032a3af731eb102636a7ffcb60eb33a837499 /src/devices/video/zeus2.cpp
parent773045e75827f0b516a25b47956450bda4150f4b (diff)
(nw) Fixed the build (subCmd set but not used)
Diffstat (limited to 'src/devices/video/zeus2.cpp')
-rw-r--r--src/devices/video/zeus2.cpp4
1 files 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;