mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
Fixed floats with negative values
This commit is contained in:
parent
3d20b3a232
commit
1435489a43
1 changed files with 1 additions and 1 deletions
|
@ -1391,7 +1391,7 @@ bool ScriptCompiler::EvalPrevValue(ScriptVariable& var)
|
|||
break;
|
||||
|
||||
case OP_STORE_FLOAT:
|
||||
intValue = GetOpcodeValue<float>(sizeof(float), sizeof(float));
|
||||
floatValue = GetOpcodeValue<float>(sizeof(float), sizeof(float));
|
||||
var.setFloatValue(floatValue);
|
||||
return true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue