mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
InputCommon/ExpressionParser: Make function argument parsing error
message more clear.
This commit is contained in:
@ -764,7 +764,7 @@ private:
|
|||||||
|
|
||||||
// Comma before the next argument.
|
// Comma before the next argument.
|
||||||
if (TOK_COMMA != tok.type)
|
if (TOK_COMMA != tok.type)
|
||||||
return ParseResult::MakeErrorResult(tok, Common::GetStringT("Expected comma."));
|
return ParseResult::MakeErrorResult(tok, Common::GetStringT("Expected closing paren."));
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user