summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/gba/rom.cpp
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2018-01-13 16:51:36 -0500
committer arbee <rb6502@users.noreply.github.com>2018-01-13 16:51:36 -0500
commitba9c8cc685befcf0ba70b5ac456d968da7436340 (patch)
tree6f26d5db39835d37d4d8a2290e62e603c988a6b2 /src/devices/bus/gba/rom.cpp
parent3fd2f2f2d40ad30dabd9640cc67af8f7e574bfbb (diff)
compile fix for GCC 7.2.1 (nw)
Diffstat (limited to 'src/devices/bus/gba/rom.cpp')
-rw-r--r--src/devices/bus/gba/rom.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/devices/bus/gba/rom.cpp b/src/devices/bus/gba/rom.cpp
index c8e938daa73..3306b7baa67 100644
--- a/src/devices/bus/gba/rom.cpp
+++ b/src/devices/bus/gba/rom.cpp
@@ -745,7 +745,10 @@ WRITE32_MEMBER(gba_rom_3dmatrix_device::write_mapper)
case 2:
//printf("m_dst: %08x\n", data); fflush(stdout);
if (data >= 0xa000000)
- printf("Unknown transfer destination 0x%X\n", data); fflush(stdout);
+ {
+ printf("Unknown transfer destination 0x%X\n", data);
+ fflush(stdout);
+ }
m_dst = (data & 0x1ffffff);
break;
case 3: