(svn r20332) -Add: [NewGRF] AdvVarAct2 operators for SHL, SHR and SAR.

This commit is contained in:
frosch
2010-08-02 23:12:43 +00:00
parent 689d4bef04
commit 0e5c562da4
2 changed files with 6 additions and 0 deletions

View File

@@ -151,6 +151,9 @@ enum DeterministicSpriteGroupAdjustOperation {
DSGA_OP_ROR, ///< rotate a b positions to the right
DSGA_OP_SCMP, ///< (signed) comparision (a < b -> 0, a == b = 1, a > b = 2)
DSGA_OP_UCMP, ///< (unsigned) comparision (a < b -> 0, a == b = 1, a > b = 2)
DSGA_OP_SHL, ///< a << b
DSGA_OP_SHR, ///< (unsigned) a >> b
DSGA_OP_SAR, ///< (signed) a >> b
};