mirror of
https://github.com/zeldaret/tmc
synced 2026-09-01 01:51:47 -04:00
fixed some argument types
This commit is contained in:
+1
-1
@@ -50,7 +50,7 @@ u32 InitSaveData(void);
|
||||
|
||||
u32 Write_02000000(struct_02000000*);
|
||||
s32 ReadSaveFile(u32, SaveFile*);
|
||||
u32 Read_02000000(SaveFile*);
|
||||
u32 Read_02000000(struct_02000000*);
|
||||
void SetFileStatusDeleted(u32 index);
|
||||
|
||||
#endif
|
||||
+3
-3
@@ -157,18 +157,18 @@ u32 Write_02000000(struct_02000000* arg0) {
|
||||
}
|
||||
|
||||
u32 sub_0807CF1C(u8* arg0) {
|
||||
return DataDoubleWriteWithStatus(5, (void*)arg0);
|
||||
return DataDoubleWriteWithStatus(5, arg0);
|
||||
}
|
||||
|
||||
s32 ReadSaveFile(u32 index, SaveFile* saveFile) {
|
||||
return DataDoubleReadWithStatus(index, saveFile);
|
||||
}
|
||||
|
||||
u32 Read_02000000(SaveFile* arg0) {
|
||||
u32 Read_02000000(struct_02000000* arg0) {
|
||||
return DataDoubleReadWithStatus(3, arg0);
|
||||
}
|
||||
|
||||
u32 sub_0807CF3C(SaveFile* arg0) {
|
||||
u32 sub_0807CF3C(u8* arg0) {
|
||||
return DataDoubleReadWithStatus(5, arg0);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user