mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
ExpressionParser: Parse fully qualified control names correctly
Without clearing out the "accumulator" for the backtick parsing, our control name was full of junk (the previous device name) causing us to not correctly find the control. Ensure that always we clear the "accumulator" string during backtick parsing.
This commit is contained in:
parent
c52a583090
commit
b64e882ba5
1 changed files with 1 additions and 0 deletions
|
@ -95,6 +95,7 @@ public:
|
|||
|
||||
bool FetchBacktickString(std::string &value, char otherDelim = 0)
|
||||
{
|
||||
value = "";
|
||||
while (it != expr.end())
|
||||
{
|
||||
char c = *it;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue