diff options
author | 2016-05-25 08:19:21 +0200 | |
---|---|---|
committer | 2016-05-25 08:19:21 +0200 | |
commit | 68785dccfee3208163c8169abc5c6d01becf36d4 (patch) | |
tree | d6967331fd0e938981777aa32b5f246e04fb701b /src/devices/cpu/h8/h8.cpp | |
parent | c1230f8b9bf4373d396ecb970c966ec2ce6dfc15 (diff) |
Cleanups and version bumpmame0174
Diffstat (limited to 'src/devices/cpu/h8/h8.cpp')
-rw-r--r-- | src/devices/cpu/h8/h8.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/h8/h8.cpp b/src/devices/cpu/h8/h8.cpp index a92143e5680..bd53761bb6a 100644 --- a/src/devices/cpu/h8/h8.cpp +++ b/src/devices/cpu/h8/h8.cpp @@ -146,9 +146,9 @@ void h8_device::set_current_dma(h8_dma_state *state) logerror("DMA done\n"); else logerror("New current dma s=%x d=%x is=%d id=%d count=%x m=%d\n", - state->source, state->dest, state->incs, state->incd, - state->count, state->mode_16 ? 16 : 8); - + state->source, state->dest, state->incs, state->incd, + state->count, state->mode_16 ? 16 : 8); + } void h8_device::set_current_dtc(h8_dtc_state *state) |