mirror of https://github.com/stella-emu/stella.git
improved 'help' command in debugger prompt (case insensitive now)
This commit is contained in:
parent
62ca90a784
commit
28db219b22
|
@ -1492,9 +1492,9 @@ void DebuggerParser::executeHelp()
|
|||
}
|
||||
else // get help for specific command
|
||||
{
|
||||
for(const auto& c: commands)
|
||||
for(auto& c: commands)
|
||||
{
|
||||
if(argStrings[0] == c.cmdString)
|
||||
if(BSPF::toLowerCase(argStrings[0]) == BSPF::toLowerCase(c.cmdString))
|
||||
{
|
||||
commandResult << " " << red(c.description) << '\n' << c.extendedDesc;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue