diff options
| author | cadmic <cadmic24@gmail.com> | 2024-09-25 14:41:08 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-25 17:41:08 -0400 |
| commit | 0acaed6d17afb9b47de50628d8afb8df009a2dc9 (patch) | |
| tree | 013e6fefed99c3bfff01a74f94c0d66c57a89fe0 /include | |
| parent | 8ff4faa084f58b4606dd9f8e420a75975cb04957 (diff) | |
[PAL N64] Match z_message.c (#2202)
Diffstat (limited to 'include')
| -rw-r--r-- | include/n64dd.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/n64dd.h b/include/n64dd.h index 6931eac26..6a353c317 100644 --- a/include/n64dd.h +++ b/include/n64dd.h @@ -6,6 +6,7 @@ #include "z64pause.h" #include "z64scene.h" #include "z64map_mark.h" +#include "versions.h" struct Font; struct GameState; @@ -49,11 +50,18 @@ typedef struct n64ddStruct_80121220 { struct SceneTableEntry* (*unk_48)(s32 sceneId, struct SceneTableEntry* sceneTable); char unk_4C[0x08]; s32 (*unk_54)(struct PlayState*); +#if OOT_NTSC void (*unk_58)(struct MessageTableEntry**, struct MessageTableEntry**, struct MessageTableEntry**); +#else + void (*unk_58)(struct MessageTableEntry**, const char***, const char***, struct MessageTableEntry**); +#endif char unk_5C[0x4]; s32 (*unk_60)(struct Font*); s32 (*unk_64)(struct Font*); s32 (*unk_68)(struct Font*); +#if OOT_PAL + s32 (*unk_6C_PAL)(struct Font*); +#endif void (*unk_6C)(struct PlayState*, SceneDrawConfigFunc*); s32 (*unk_70)(struct DmaRequest* req, void* ram, uintptr_t vrom, size_t size, u32 unk, OSMesgQueue* queue, OSMesg msg); void (*unk_74)(struct GameState*); |
