MESSAGE_ID macro: 0x10 -> 16

This commit is contained in:
Alex Bates 2021-02-10 13:45:00 +00:00
parent f28218a6f1
commit b2d0b2c6c8

View File

@ -6,6 +6,6 @@
typedef s32 MessageID;
// Prefer editing splat.yaml's msg ids section than using this directly!
#define MESSAGE_ID(section, index) (((section << 0x10) + index))
#define MESSAGE_ID(section, index) (((section << 16) + index))
#endif