summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r--src/emu/debug/debugcmd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp
index ad1359baa28..4959f215caa 100644
--- a/src/emu/debug/debugcmd.cpp
+++ b/src/emu/debug/debugcmd.cpp
@@ -2823,12 +2823,12 @@ void debugger_commands::execute_symlist(int ref, int params, const char **param)
}
/* gather names for all symbols */
- for (symbol_entry &entry : symtable->entries())
+ for (auto &entry : symtable->entries())
{
/* only display "register" type symbols */
- if (!entry.is_function())
+ if (!entry.second->is_function())
{
- namelist[count++] = entry.name();
+ namelist[count++] = entry.second->name();
if (count >= ARRAY_LENGTH(namelist))
break;
}