diff options
| author | notyourav <65437533+notyourav@users.noreply.github.com> | 2020-11-16 15:49:02 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-16 15:49:02 -0800 |
| commit | d4f80d7cf97641742dd56cabc0b1d503cfdf7b0d (patch) | |
| tree | 05b09142b74869f74779a00deff410019b8dcaac /src/KingSystem/Resource/resSystem.cpp | |
| parent | 8205744abcae5784138629038976f2449269a81f (diff) | |
| parent | b0498a15bf6f1782f1429ffbd0b03c187f61d7c9 (diff) | |
Merge branch 'master' into placement
Diffstat (limited to 'src/KingSystem/Resource/resSystem.cpp')
| -rw-r--r-- | src/KingSystem/Resource/resSystem.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/KingSystem/Resource/resSystem.cpp b/src/KingSystem/Resource/resSystem.cpp index 71713a1c..f4238ad1 100644 --- a/src/KingSystem/Resource/resSystem.cpp +++ b/src/KingSystem/Resource/resSystem.cpp @@ -1,4 +1,5 @@ #include "KingSystem/Resource/resSystem.h" +#include "KingSystem/Resource/resResourceMgrTask.h" namespace ksys::res { @@ -6,6 +7,10 @@ bool stubbedLogFunction() { return true; } +bool isHostPath(const sead::SafeString& path) { + return ResourceMgrTask::instance()->isHostPath(path); +} + bool returnFalse() { return false; } @@ -14,6 +19,10 @@ bool returnFalse2(const sead::SafeString&) { return false; } +bool returnFalse3(const sead::SafeString&) { + return false; +} + s32 getDefaultAlignment() { return 8; } |
