diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/save_block_2.h | 2 | ||||
-rw-r--r-- | include/script.h | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/save_block_2.h b/include/save_block_2.h index 38e11de4..ac5a2044 100644 --- a/include/save_block_2.h +++ b/include/save_block_2.h @@ -8,7 +8,7 @@ struct SaveBlock2 u8 filler_14[4]; u8 gender; u8 padding[3]; - // TODO: finish this struct + // TODO: finish this st ruct }; struct String * FUN_020239A0(struct SaveBlock2 *, u32 heap_id); diff --git a/include/script.h b/include/script.h index 494a9d9f..7c4dae6d 100644 --- a/include/script.h +++ b/include/script.h @@ -3,6 +3,7 @@ #include "global.h"
#include "msgdata.h"
+#include "save_block_2.h"
struct ScriptContext;
@@ -23,7 +24,7 @@ struct ScriptContext u32 unk74;
struct MsgData * unk78;
u8 *unk7C;
- void * unk80;
+ struct SaveBlock2 * unk80;
};
#define ScriptReadByte(ctx) (*(ctx->scriptPtr++))
|