mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-05-03 02:34:48 +12:00
[FS] Add directory stuff, clean up
This commit is contained in:
parent
3ca324350b
commit
4bef096f04
10 changed files with 70 additions and 9 deletions
include
|
@ -129,6 +129,11 @@ private:
|
|||
void openLinkFile(u32 messagePointer, Handle file);
|
||||
void setFilePriority(u32 messagePointer, Handle file);
|
||||
|
||||
// Directory operations
|
||||
void handleDirectoryOperation(u32 messagePointer, Handle directory);
|
||||
void closeDirectory(u32 messagePointer, Handle directory);
|
||||
void readDirectory(u32 messagePointer, Handle directory);
|
||||
|
||||
public:
|
||||
Kernel(CPU& cpu, Memory& mem, GPU& gpu);
|
||||
void initializeFS() { return serviceManager.initializeFS(); }
|
||||
|
|
|
@ -95,5 +95,5 @@ public:
|
|||
void setColourBufferLoc(u32 loc) { colourBufferLoc = loc; }
|
||||
void setDepthBufferLoc(u32 loc) { depthBufferLoc = loc; }
|
||||
|
||||
static constexpr u32 vertexBufferSize = 0x1500;
|
||||
static constexpr u32 vertexBufferSize = 0x10000;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue