diff options
author | Max <mparisi@stevens.edu> | 2020-10-27 22:42:39 -0400 |
---|---|---|
committer | Max <mparisi@stevens.edu> | 2020-10-27 22:42:39 -0400 |
commit | 585b88fcba1dc639c859288a3df7f21a3b17bd4a (patch) | |
tree | d8ab8f4b64f5f04a81954b84718acd5f19968d88 /include/SDK | |
parent | c4dcd29c7708fc02463cf7e921f31ab404d88843 (diff) |
add headers and cleanup
Diffstat (limited to 'include/SDK')
-rw-r--r-- | include/SDK/DVD/dvdfs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/SDK/DVD/dvdfs.h b/include/SDK/DVD/dvdfs.h index 7be2c08..a5283eb 100644 --- a/include/SDK/DVD/dvdfs.h +++ b/include/SDK/DVD/dvdfs.h @@ -14,9 +14,9 @@ struct DVDFileInfo u8 unk0[0x34];
size_t unk34;
u8 unk38[0x8];
- void (*unk40)(s32, void*); // TODO: not a DVDFileCallback bc an unkClass* is passed as 2nd param?
- void* unk44; //data cache start addr to invalidate
- s32 unk48; // data cache region size
+ void (*unk40)(s32, void*);
+ void* unk44;
+ u32 unk48;
};
BOOL DVDOpen(const char*, DVDFileInfo*);
|