diff options
author | Eldred Habert <eldredhabert0@gmail.com> | 2018-06-06 17:19:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-06 17:19:29 +0200 |
commit | 530e3e80691d27d0c65c1f91ce79bb65e39d4283 (patch) | |
tree | 3245f62a48f97b3720104fcfa1dfcc5a5b658156 /constants/misc_constants.asm | |
parent | ea2d9e25e15f45169bff9b769244812f10f42929 (diff) | |
parent | 1d70c1e4ca11ecdf21beaebcfbc3eedc2b6dea95 (diff) |
Merge pull request #13 from PikalaxALT/rtc_fade
Time of day palettes and fade functions
Diffstat (limited to 'constants/misc_constants.asm')
-rw-r--r-- | constants/misc_constants.asm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 19deb8e..39f2769 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -21,4 +21,8 @@ D_UP EQU 1 << D_UP_F D_DOWN EQU 1 << D_DOWN_F BUTTONS EQU A_BUTTON | B_BUTTON | SELECT | START -D_PAD EQU D_RIGHT | D_LEFT | D_UP | D_DOWN
\ No newline at end of file +D_PAD EQU D_RIGHT | D_LEFT | D_UP | D_DOWN + +; Boolean values +FALSE EQU 0 +TRUE EQU 1 |