that shouldn't be mutable (nw)

This commit is contained in:
Vas Crabb 2018-03-23 23:52:20 +11:00
parent 33a701593f
commit 64ff86b5a9

View File

@ -139,8 +139,8 @@
#include "x68000.lh"
static uint32_t adpcm_clock[2] = { 8000000, 4000000 };
static uint32_t adpcm_div[4] = { 1024, 768, 512, /* Reserved */512 };
static constexpr uint32_t adpcm_clock[2] = { 8000000, 4000000 };
static constexpr uint32_t adpcm_div[4] = { 1024, 768, 512, /* Reserved */512 };
void x68k_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
{