diff --git a/arm9/source/common/colors.h b/arm9/source/common/colors.h index 5119bb8..993676a 100644 --- a/arm9/source/common/colors.h +++ b/arm9/source/common/colors.h @@ -1,7 +1,7 @@ #pragma once -#define RGB(r,g,b) ((r)<<24|(b)<<16|(g)<<8|(r)) +#define RGB(r,g,b) ((b)<<16|(g)<<8|(r)) // a base set of colors below #define COLOR_BLACK RGB(0x00, 0x00, 0x00)