diff options
| author | Billy <1184136+philtyl@users.noreply.github.com> | 2023-08-19 15:34:48 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-19 11:34:48 -0400 |
| commit | fc3e0f080bccb88112e512f5d20bbe32f4661d71 (patch) | |
| tree | 215150fa2848662f4731644e400b34f5bae92edf /include | |
| parent | d6207b17c2c6dd51d6136a86bee3deee66f45734 (diff) | |
En_Cow Doc (#1492)
* Add Documentation for Cows
* Better naming for cow unlock flag
* Update with MM solutions and PR suggestions
* Readable conditions
* Decimal cycle counter
* Replace params with cow type
* Clean up type usage and function names
* Clean up cylinders
* Fix collider enum
* Rename EnCow rear collider
* Fix spacing
* PR fixes:
COLL -> COLLIDER enum
static prefix
Missed MM function naming
Specific actor flags naming
* Rename of healRot and breathTimer
* Document Epona's song reset behavior
* anon review
* fig review
* whitespace
* rework milk interaction stuff
* changes to milk comment
---------
Co-authored-by: fig02 <fig02srl@gmail.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/regs.h | 1 | ||||
| -rw-r--r-- | include/z64save.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/regs.h b/include/regs.h index 732f16ac0..7806afc96 100644 --- a/include/regs.h +++ b/include/regs.h @@ -106,6 +106,7 @@ #define R_MESSAGE_DEBUGGER_TEXTID YREG(79) #define R_C_UP_ICON_X YREG(88) #define R_C_UP_ICON_Y YREG(89) +#define R_EPONAS_SONG_PLAYED DREG(53) #define R_MAGIC_FILL_COLOR(i) ZREG(0 + (i)) #define R_C_BTN_COLOR(i) ZREG(39 + (i)) #define R_B_BTN_COLOR(i) ZREG(43 + (i)) diff --git a/include/z64save.h b/include/z64save.h index 071bf59a5..c7eb9a65a 100644 --- a/include/z64save.h +++ b/include/z64save.h @@ -387,7 +387,7 @@ typedef enum { #define EVENTCHKINF_1B 0x1B #define EVENTCHKINF_1C 0x1C #define EVENTCHKINF_1D 0x1D -#define EVENTCHKINF_1E 0x1E +#define EVENTCHKINF_HORSE_RACE_COW_UNLOCK 0x1E #define EVENTCHKINF_20 0x20 #define EVENTCHKINF_21 0x21 #define EVENTCHKINF_22 0x22 |
