diff options
| author | cadmic <cadmic24@gmail.com> | 2024-10-09 06:48:53 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-09 09:48:53 -0400 |
| commit | 60f9607569249813d508ec70ef501db6d46682ea (patch) | |
| tree | 72188e6a24f6f90c74d3d265ff936c7f7c08263f /include | |
| parent | d3bf8ae78b36e4f81fa3c2f90e97ce067f61d12e (diff) | |
[ntsc-1.0/1.1] Match "system" files (#2254)
Diffstat (limited to 'include')
| -rw-r--r-- | include/z64.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/include/z64.h b/include/z64.h index d52d459de..5779205b3 100644 --- a/include/z64.h +++ b/include/z64.h @@ -389,10 +389,12 @@ ALIGNED(4) typedef struct PreNmiBuff { } PreNmiBuff; // size = 0x18 (actually osAppNMIBuffer is 0x40 bytes large but the rest is unused) typedef enum ViModeEditState { - /* 0 */ VI_MODE_EDIT_STATE_INACTIVE, - /* 1 */ VI_MODE_EDIT_STATE_ACTIVE, - /* 2 */ VI_MODE_EDIT_STATE_2, // active, more adjustments - /* 3 */ VI_MODE_EDIT_STATE_3 // active, more adjustments, print comparison with NTSC LAN1 mode + /* -2 */ VI_MODE_EDIT_STATE_NEGATIVE_2 = -2, + /* -1 */ VI_MODE_EDIT_STATE_NEGATIVE_1, + /* 0 */ VI_MODE_EDIT_STATE_INACTIVE, + /* 1 */ VI_MODE_EDIT_STATE_ACTIVE, + /* 2 */ VI_MODE_EDIT_STATE_2, // active, more adjustments + /* 3 */ VI_MODE_EDIT_STATE_3 // active, more adjustments, print comparison with NTSC LAN1 mode } ViModeEditState; typedef struct ViMode { |
