mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 03:24:59 +00:00
Merge pull request #2434 from lioncash/break
ExpressionParser: Add missing break in UnaryExpression value setting
This commit is contained in:
commit
0e39b8d9e7
1 changed files with 2 additions and 0 deletions
|
@ -357,6 +357,8 @@ public:
|
|||
{
|
||||
case TOK_NOT:
|
||||
inner->SetValue(1.0 - value);
|
||||
break;
|
||||
|
||||
default:
|
||||
assert(false);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue