summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2024-05-17 12:03:34 +0200
committerrobojumper <robojumper@gmail.com>2024-05-17 12:03:41 +0200
commitf14d3b157dcd28371cfec6ace87b8a98a73956c1 (patch)
treea2bb0ce68418b21abd94a5e4efb760f9a65f4667 /include
parent70ee8e4195e4b1565d7cc48ca68ec8b5819d5b0d (diff)
One regswap and one thunk away
Diffstat (limited to 'include')
-rw-r--r--include/egg/core/eggArchive.h2
-rw-r--r--include/egg/core/eggDvdRipper.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/egg/core/eggArchive.h b/include/egg/core/eggArchive.h
index 4600a3f8..72f2ec97 100644
--- a/include/egg/core/eggArchive.h
+++ b/include/egg/core/eggArchive.h
@@ -40,7 +40,7 @@ public:
/* 80493760 */ static Archive *findArchive(NANDFileInfo *file);
/* 804937f0 */ static void appendList(Archive *); // prob private
/* 80493850 */ static void removeList(Archive *);
- /* 80493860 */ static Archive *mount(void *data, Heap *heap, s32 align);
+ /* 80493860 */ static Archive *mount(void *data, Heap *heap, int align);
/* 80493950 */ static Archive *mountFST(void *data, Heap *heap, s32 align);
/* 80493a40 */ static Archive *mountNandFile(NANDFileInfo *, Heap *heap, s32 align);
/* 80493ac0 */ static Archive *loadFST(const char *fileName, Heap *heap, s32 align);
diff --git a/include/egg/core/eggDvdRipper.h b/include/egg/core/eggDvdRipper.h
index 873508d6..fc2cc374 100644
--- a/include/egg/core/eggDvdRipper.h
+++ b/include/egg/core/eggDvdRipper.h
@@ -20,7 +20,7 @@ public:
/* 804947e0 */ static u8 *loadToMainRAM(DvdFile *file, u8 *dst, Heap *heap, EAllocDirection allocDir, u32 offset,
u32 *amountRead, u32 *fileSize);
/* 804949b0 */ static void *loadToMainRAMDecomp(DvdFile *file, StreamDecomp *decompressor, u8 *dst, Heap *heap,
- EAllocDirection allocDir, u32 offset, s32 size, u32 maxChunkSize, u32 *amountRead, u32 *fileSize);
+ EAllocDirection allocDir, s32 offset, u32 size, u32 maxChunkSize, u32 *amountRead, u32 *fileSize);
public:
/* 80574ed0 */ static bool sErrorRetry;