diff options
Diffstat (limited to 'src/mame/drivers/itech8.cpp')
-rw-r--r-- | src/mame/drivers/itech8.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/itech8.cpp b/src/mame/drivers/itech8.cpp index 13b33bdaf1d..834057e8bae 100644 --- a/src/mame/drivers/itech8.cpp +++ b/src/mame/drivers/itech8.cpp @@ -1093,8 +1093,8 @@ INPUT_PORTS_END CUSTOM_INPUT_MEMBER(itech8_state::gtg_mux) { - const char *tag1 = (const char *)param; - const char *tag2 = tag1 + strlen(tag1) + 1; + const char * tag1 = (const char *)param; + const char * tag2 = tag1 + strlen(tag1) + 1; return ioport(tag1)->read() & ioport(tag2)->read(); } |