summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/gba/rom.cpp
diff options
context:
space:
mode:
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: