summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m68000/m68kdasm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m68000/m68kdasm.cpp')
-rw-r--r--src/devices/cpu/m68000/m68kdasm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/m68000/m68kdasm.cpp b/src/devices/cpu/m68000/m68kdasm.cpp
index 7a0163c93e7..86c97eee7b1 100644
--- a/src/devices/cpu/m68000/m68kdasm.cpp
+++ b/src/devices/cpu/m68000/m68kdasm.cpp
@@ -977,7 +977,7 @@ std::string m68k_disassembler::d68040_cinv()
if(limit.first)
return limit.second;
- static const char *cachetype[4] = { "nop", "data", "inst", "both" };
+ static char const *const cachetype[4] = { "nop", "data", "inst", "both" };
switch((m_cpu_ir>>3)&3)
{
@@ -1241,7 +1241,7 @@ std::string m68k_disassembler::d68040_cpush()
if(limit.first)
return limit.second;
- static const char *cachetype[4] = { "nop", "data", "inst", "both" };
+ static char const *const cachetype[4] = { "nop", "data", "inst", "both" };
switch((m_cpu_ir>>3)&3)
{