mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-20 12:39:13 +12:00
[FS] Fix file path oopsie
This commit is contained in:
parent
f68ddebf90
commit
4e04e58fbe
3 changed files with 56 additions and 14 deletions
|
@ -18,4 +18,10 @@ public:
|
|||
auto cxi = mem.getCXI();
|
||||
return (cxi != nullptr && cxi->hasRomFS());
|
||||
}
|
||||
|
||||
// Returns whether the cart has an ExeFS (All executable carts should have an ExeFS. This is just here to be safe)
|
||||
bool hasExeFS() {
|
||||
auto cxi = mem.getCXI();
|
||||
return (cxi != nullptr && cxi->hasExeFS());
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue