mirror of
https://github.com/alexbatalov/fallout2-ce.git
synced 2024-11-19 23:14:09 +00:00
Fix negate operator
This commit is contained in:
parent
3592a7232c
commit
5c8f7c4b00
@ -1778,8 +1778,18 @@ static void opLogicalOperatorNot(Program* program)
|
||||
// 0x46AB2C
|
||||
static void opUnaryMinus(Program* program)
|
||||
{
|
||||
int value = programStackPopInteger(program);
|
||||
programStackPushInteger(program, -value);
|
||||
// SFALL: Fix vanilla negate operator for float values.
|
||||
ProgramValue programValue = programStackPopValue(program);
|
||||
switch (programValue.opcode) {
|
||||
case VALUE_TYPE_INT:
|
||||
programStackPushInteger(program, -programValue.integerValue);
|
||||
break;
|
||||
case VALUE_TYPE_FLOAT:
|
||||
programStackPushFloat(program, -programValue.floatValue);
|
||||
break;
|
||||
default:
|
||||
programFatalError("Invalid arg given to NEG");
|
||||
}
|
||||
}
|
||||
|
||||
// 0x46AB84
|
||||
|
Loading…
Reference in New Issue
Block a user