its flavour, not flavor

This commit is contained in:
DizzyEggg 2017-11-27 21:54:15 +01:00
parent 7144b3b7af
commit 7275585d56

View file

@ -74,11 +74,11 @@
#define B_BUFF_PLACEHOLDER_BEGIN 0xFD #define B_BUFF_PLACEHOLDER_BEGIN 0xFD
#define B_BUFF_EOS 0xFF #define B_BUFF_EOS 0xFF
#define PREPARE_FLAVOR_BUFFER(textVar, flavourId) \ #define PREPARE_FLAVOR_BUFFER(textVar, flavorId) \
{ \ { \
textVar[0] = B_BUFF_PLACEHOLDER_BEGIN; \ textVar[0] = B_BUFF_PLACEHOLDER_BEGIN; \
textVar[1] = B_BUFF_NEGATIVE_FLAVOR; \ textVar[1] = B_BUFF_NEGATIVE_FLAVOR; \
textVar[2] = flavourId; \ textVar[2] = flavorId; \
textVar[3] = B_BUFF_EOS; \ textVar[3] = B_BUFF_EOS; \
} }