From ed2b6f4f7283087ff429f1009df90d353da188b6 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sat, 22 Sep 2007 20:29:17 +0000 Subject: (svn r11141) -Codechange: add support for NewGRF's varaction2 operators 11, 12 and 13. --- src/newgrf_spritegroup.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/newgrf_spritegroup.h') diff --git a/src/newgrf_spritegroup.h b/src/newgrf_spritegroup.h index ebe07cd63..3f84b9af9 100644 --- a/src/newgrf_spritegroup.h +++ b/src/newgrf_spritegroup.h @@ -77,6 +77,9 @@ enum DeterministicSpriteGroupAdjustOperation { DSGA_OP_STO, ///< store a into temporary storage, indexed by b. return a DSGA_OP_RST, ///< return b DSGA_OP_STOP, ///< store a into persistent storage, indexed by b, return a + 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) }; -- cgit v1.2.3-54-g00ecf