summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/express.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/express.c')
-rw-r--r--src/emu/debug/express.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/express.c b/src/emu/debug/express.c
index 099c01506b9..434e2c83090 100644
--- a/src/emu/debug/express.c
+++ b/src/emu/debug/express.c
@@ -1978,7 +1978,7 @@ int symtable_add(symbol_table *table, const char *name, const symbol_entry *entr
int strindex;
int all_digits, i;
- assert_always(entry->table == table, "Mismatched symbol tables");
+// assert_always(entry->table == table, "Mismatched symbol tables");
/* we cannot add numeric symbols */
all_digits = TRUE;
@@ -1990,7 +1990,7 @@ int symtable_add(symbol_table *table, const char *name, const symbol_entry *entr
break;
}
}
- assert_always(!all_digits, "All-digit symbols are not allowed");
+// assert_always(!all_digits, "All-digit symbols are not allowed");
/* see if we already have an entry and just overwrite it if we do */
oldentry = (symbol_entry *)symtable_find(table, name);