mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
ExpressionParser: Add missing break in UnaryExpression value setting
This commit is contained in:
@ -357,6 +357,8 @@ public:
|
|||||||
{
|
{
|
||||||
case TOK_NOT:
|
case TOK_NOT:
|
||||||
inner->SetValue(1.0 - value);
|
inner->SetValue(1.0 - value);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
assert(false);
|
assert(false);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user