diff options
| author | Derek Hensley <hensley.derek58@gmail.com> | 2023-08-04 09:02:33 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-04 12:02:33 -0400 |
| commit | 5b54707958ca7fe5455436cf732cdf034232cd50 (patch) | |
| tree | fcb69dbd4becb53a3b8d16c5d721c30454e28b1a /include | |
| parent | c51da0ee0f9c5616bb3fb212f8b6943f727e37d3 (diff) | |
Viconfig OK (#29)
Diffstat (limited to 'include')
| -rw-r--r-- | include/boot_variables.h | 6 | ||||
| -rw-r--r-- | include/code_variables.h | 2 | ||||
| -rw-r--r-- | include/idle.h | 4 | ||||
| -rw-r--r-- | include/viconfig.h | 7 |
4 files changed, 13 insertions, 6 deletions
diff --git a/include/boot_variables.h b/include/boot_variables.h index 65fd39a..577b212 100644 --- a/include/boot_variables.h +++ b/include/boot_variables.h @@ -12,7 +12,7 @@ // extern UNK_TYPE D_8003BBC4_jp; // extern UNK_TYPE D_FLT_8003BBC8_jp; // extern UNK_TYPE D_FLT_8003BBCC_jp; -// extern UNK_TYPE gCartHandle; +extern OSPiHandle* gCartHandle; // TODO: Determine where this goes // extern UNK_TYPE D_8003BBE0_jp; // extern UNK_TYPE D_8003BBF0_jp; // extern UNK_TYPE D_8003BC38_jp; @@ -248,8 +248,8 @@ // extern UNK_TYPE B_8003FE00_jp; // extern UNK_TYPE B_8003FEC8_jp; // extern UNK_TYPE B_8003FEE0_jp; -// extern UNK_TYPE B_8003FF30_jp; -// extern UNK_TYPE B_8003FF31_jp; +// extern UNK_TYPE gViConfigBlackNext; +// extern UNK_TYPE gViConfigBlack; // extern UNK_TYPE B_8003FF40_jp; // extern UNK_TYPE B_8003FF5C_jp; // extern UNK_TYPE B_8003FF60_jp; diff --git a/include/code_variables.h b/include/code_variables.h index b462c14..cd30616 100644 --- a/include/code_variables.h +++ b/include/code_variables.h @@ -816,7 +816,7 @@ // extern UNK_TYPE D_8010EF80_jp; // extern UNK_TYPE gamePT; // extern UNK_TYPE D_8010EFA0_jp; -// extern UNK_TYPE D_8010EFB0_jp; +extern vs32 D_8010EFB0_jp; // TODO: Determine where this goes // extern UNK_TYPE D_8010EFB8_jp; // extern UNK_TYPE D_8010EFC0_jp; // extern UNK_TYPE D_8010EFC8_jp; diff --git a/include/idle.h b/include/idle.h index f210ec3..fb4938d 100644 --- a/include/idle.h +++ b/include/idle.h @@ -5,6 +5,10 @@ extern OSViMode gViConfigMode; +extern u32 gViConfigFeatures; +extern f32 gViConfigXScale; +extern f32 gViConfigYScale; + void Idle_ThreadEntry(void* arg); #endif diff --git a/include/viconfig.h b/include/viconfig.h index ea6f726..b69d1cd 100644 --- a/include/viconfig.h +++ b/include/viconfig.h @@ -3,7 +3,10 @@ #include "ultra64.h" -// void func_800260A0_jp(); -// void func_800261F4_jp(); +void ViConfig_UpdateVi(u32 arg0); +void ViConfig_UpdateBlack(void); + +u8 gViConfigBlackNext; +u8 gViConfigBlack; #endif |
