diff options
Diffstat (limited to 'src/devices/cpu/h8/h8_timer16.cpp')
-rw-r--r-- | src/devices/cpu/h8/h8_timer16.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/h8/h8_timer16.cpp b/src/devices/cpu/h8/h8_timer16.cpp index fdb0e3ddd05..f74acb4816f 100644 --- a/src/devices/cpu/h8/h8_timer16.cpp +++ b/src/devices/cpu/h8/h8_timer16.cpp @@ -329,7 +329,7 @@ void h8_timer16_device::device_start() { memset(timer_channel, 0, sizeof(timer_channel)); for(int i=0; i<timer_count; i++) { - char tm[2]; + char tm[0x10]; sprintf(tm, "%d", i); timer_channel[i] = subdevice<h8_timer16_channel_device>(tm); } |