BASE: Do not warn on unhandled empty command, improve warning wording
This commit is contained in:
parent
8af0b8baa5
commit
6608aac670
1 changed files with 2 additions and 1 deletions
|
@ -1460,7 +1460,8 @@ bool processSettings(Common::String &command, Common::StringMap &settings, Commo
|
|||
return true;
|
||||
#endif
|
||||
} else {
|
||||
warning("Unhandled command \"%s\"", command.c_str());
|
||||
if (!command.empty())
|
||||
warning("processSettings(): Unhandled command line parameter \"%s\"", command.c_str());
|
||||
}
|
||||
|
||||
#endif // DISABLE_COMMAND_LINE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue