Skip to content

debugger: fix symlist default CPU #13886

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/emu/debug/debugcmd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3912,8 +3912,8 @@ void debugger_commands::execute_symlist(const std::vector<std::string_view> &par
device_t *cpu = nullptr;
symbol_table *symtable;

// default to CPU "0" if none specified
if (!m_console.validate_cpu_parameter(params.empty() ? "0" : params[0], cpu))
// default to visible CPU if none specified
if (!m_console.validate_cpu_parameter(params.empty() ? std::string_view() : params[0], cpu))
{
if (!params.empty())
return; // explicitly specified CPU is invalid
Expand Down
Loading