summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m68000/m68kmake.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m68000/m68kmake.cpp')
-rw-r--r--src/devices/cpu/m68000/m68kmake.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/m68000/m68kmake.cpp b/src/devices/cpu/m68000/m68kmake.cpp
index f36797d76ba..941ae23f0aa 100644
--- a/src/devices/cpu/m68000/m68kmake.cpp
+++ b/src/devices/cpu/m68000/m68kmake.cpp
@@ -670,7 +670,7 @@ static opcode_struct* find_opcode(char* name, int size, char* spec_proc, char* s
opcode_struct* op;
- for(op = g_opcode_input_table;op->name != nullptr;op++)
+ for(op = g_opcode_input_table;op->name[0] != 0;op++)
{
if( strcmp(name, op->name) == 0 &&
(size == op->size) &&