X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2Fsystem.h;h=e429d2336a6c8406cb7ef38c0eab3cea22bafd93;hb=a761d121263d681381a61087f110a9320626a8d0;hp=1c6cb88d39b2875508b79e336910a83b13c51e9c;hpb=064d7909aadd84f633fefcccee3c6f6eb44d47ff;p=rocksndiamonds.git diff --git a/src/libgame/system.h b/src/libgame/system.h index 1c6cb88d..e429d233 100644 --- a/src/libgame/system.h +++ b/src/libgame/system.h @@ -395,13 +395,16 @@ // event mask: bits 0-15 // CE number: bits 16-23 // anim number: bits 16-23 +// page number: bits 24-31 // part number: bits 24-31 #define ANIM_EVENT_CE_BIT 16 #define ANIM_EVENT_ANIM_BIT 16 +#define ANIM_EVENT_PAGE_BIT 24 #define ANIM_EVENT_PART_BIT 24 #define ANIM_EVENT_CE_MASK (0xff << ANIM_EVENT_CE_BIT) #define ANIM_EVENT_ANIM_MASK (0xff << ANIM_EVENT_ANIM_BIT) +#define ANIM_EVENT_PAGE_MASK (0xff << ANIM_EVENT_PAGE_BIT) #define ANIM_EVENT_PART_MASK (0xff << ANIM_EVENT_PART_BIT) #define ANIM_EVENT_DEFAULT ANIM_EVENT_NONE