- Fixed: PrintAlias passed FString objects directly to Printf.
- Added bitwise not (~) operator to ACS. SVN r352 (trunk)
This commit is contained in:
parent
3dabd38359
commit
92c3a89255
5 changed files with 13 additions and 3 deletions
|
|
@ -3524,6 +3524,10 @@ int DLevelScript::RunScript ()
|
|||
STACK(1) = !STACK(1);
|
||||
break;
|
||||
|
||||
case PCD_NEGATEBINARY:
|
||||
STACK(1) = ~STACK(1);
|
||||
break;
|
||||
|
||||
case PCD_LSHIFT:
|
||||
STACK(2) = (STACK(2) << STACK(1));
|
||||
sp--;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue