diff options
| author | Caroline Madsen <69010899+randomsalience@users.noreply.github.com> | 2025-04-09 16:45:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-09 13:45:30 -0700 |
| commit | c6f76e7240dde8bbcf40a88d6d88cf87cab616b4 (patch) | |
| tree | bf9afbb1c32e66f45bdba30f61a9e4f0d92f804a /include/JSystem/JKernel | |
| parent | 6672817e41064e04951ec28d51070b66fc8377ac (diff) | |
Various JSystem work (#2383)
* JKernel and JStudio cleanup
* JMessage cleanup
* JAudio cleanup
* JASBNKParser work
* functionvalue work
* fvb work
* J2D and J3D cleanup
* steal from tww
* J2DPictureEx mostly done
* fix build
Diffstat (limited to 'include/JSystem/JKernel')
| -rw-r--r-- | include/JSystem/JKernel/JKRAramArchive.h | 4 | ||||
| -rw-r--r-- | include/JSystem/JKernel/JKRDvdAramRipper.h | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/include/JSystem/JKernel/JKRAramArchive.h b/include/JSystem/JKernel/JKRAramArchive.h index 8ff04ebaa7..2ea5f2863b 100644 --- a/include/JSystem/JKernel/JKRAramArchive.h +++ b/include/JSystem/JKernel/JKRAramArchive.h @@ -4,7 +4,7 @@ #include "JSystem/JKernel/JKRArchive.h" class JKRAramBlock; -class JKRDvdFile; +class JKRFile; /** * @ingroup jsystem-jkernel @@ -31,7 +31,7 @@ private: /* 0x00 */ // vtable /* 0x04 */ // JKRArchive /* 0x64 */ JKRAramBlock* mBlock; - /* 0x68 */ JKRDvdFile* mDvdFile; + /* 0x68 */ JKRFile* mDvdFile; }; // Size = 0x6C #endif /* JKRARAMARCHIVE_H */ diff --git a/include/JSystem/JKernel/JKRDvdAramRipper.h b/include/JSystem/JKernel/JKRDvdAramRipper.h index fe12c61c39..1e0f05ac15 100644 --- a/include/JSystem/JKernel/JKRDvdAramRipper.h +++ b/include/JSystem/JKernel/JKRDvdAramRipper.h @@ -51,6 +51,7 @@ public: static bool syncAram(JKRADCommand*, int); static void setSZSBufferSize(u32 size) { sSZSBufferSize = size; } + static bool isErrorRetry() { return errorRetry; } // TODO: fix type static JSUList<JKRADCommand> sDvdAramAsyncList; |
