(svn r9707) -Codechange: Add some support for NewGRF var 7D, temporary storage array.

This commit is contained in:
peter1138
2007-04-21 07:27:16 +00:00
parent 01ae38e3d7
commit e5a314399a
2 changed files with 10 additions and 0 deletions

View File

@@ -60,6 +60,8 @@ enum DeterministicSpriteGroupAdjustOperation {
DSGA_OP_AND, ///< a & b
DSGA_OP_OR, ///< a | b
DSGA_OP_XOR, ///< a ^ b
DSGA_OP_STO, ///< store a into temporary storage, indexed by b. return a
DSGA_OP_RST, ///< return b
};