diff options
| author | Jonathan Wase <jonathan@familjenwase.se> | 2021-01-04 04:48:07 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-03 22:48:07 -0500 |
| commit | 0be0a7ea940c5a81b00bae5a9e3de6db16dc60e3 (patch) | |
| tree | 9423291ae95ada7e60e55bac48ff2e0bd2624481 /libs/JSystem/JKernel/JKRFileCache.cpp | |
| parent | 922a0df5ea5a3e26a17ab5845ecb5839a1910356 (diff) | |
JKRFileLoader, JKRFileFinder, and JKRThread (#60)
* JKRFileLoader OK
* JKRFileFinder progress
* JKRFileFinder OK
* JKRFileCache fix virtual function signatures
* added OSThread and OSContext types
* JKRThread fixed nonmatching functions
Co-authored-by: Julgodis <>
Co-authored-by: Pheenoh <pheenoh@gmail.com>
Diffstat (limited to 'libs/JSystem/JKernel/JKRFileCache.cpp')
| -rw-r--r-- | libs/JSystem/JKernel/JKRFileCache.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/JSystem/JKernel/JKRFileCache.cpp b/libs/JSystem/JKernel/JKRFileCache.cpp index 1ef905bc17..b434d5ca80 100644 --- a/libs/JSystem/JKernel/JKRFileCache.cpp +++ b/libs/JSystem/JKernel/JKRFileCache.cpp @@ -22,12 +22,12 @@ asm void JKRFileCache::becomeCurrent(char const*) { #include "JSystem/JKernel/JKRFileCache/asm/func_802D4D44.s" } -asm void JKRFileCache::getResource(char const*) { +asm void* JKRFileCache::getResource(char const*) { nofralloc #include "JSystem/JKernel/JKRFileCache/asm/func_802D4DD8.s" } -asm void JKRFileCache::getResource(unsigned long, char const*) { +asm void* JKRFileCache::getResource(unsigned long, char const*) { nofralloc #include "JSystem/JKernel/JKRFileCache/asm/func_802D4EDC.s" } @@ -47,12 +47,12 @@ asm void JKRFileCache::removeResourceAll(void) { #include "JSystem/JKernel/JKRFileCache/asm/func_802D50D4.s" } -asm void JKRFileCache::removeResource(void*) { +asm bool JKRFileCache::removeResource(void*) { nofralloc #include "JSystem/JKernel/JKRFileCache/asm/func_802D5164.s" } -asm void JKRFileCache::detachResource(void*) { +asm bool JKRFileCache::detachResource(void*) { nofralloc #include "JSystem/JKernel/JKRFileCache/asm/func_802D51F8.s" } |
