diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-02-09 22:02:56 -0500 |
---|---|---|
committer | Phlosioneer <mattmdrr2@gmail.com> | 2019-02-09 22:02:56 -0500 |
commit | d0cc8dfc174994fea3510e6e271d7af9899e0bf8 (patch) | |
tree | b7371d9e316160281e03bb0414346021a605482c | |
parent | 37bea25b01be5cf970882e9b9f21a411fabcc4bf (diff) |
Change negative constant into unsigned hex constant
-rw-r--r-- | include/palette.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/palette.h b/include/palette.h index 84794afc9..8d16270aa 100644 --- a/include/palette.h +++ b/include/palette.h @@ -12,7 +12,7 @@ #define PALETTE_FADE_STATUS_DELAY 2 #define PALETTE_FADE_STATUS_ACTIVE 1 #define PALETTE_FADE_STATUS_DONE 0 -#define PALETTE_FADE_STATUS_LOADING -1 +#define PALETTE_FADE_STATUS_LOADING 0xFF enum { |