Add Folder copy/move/delete

Also implement the current folder menu
This commit is contained in:
suchmememanyskill
2020-12-29 01:05:33 +01:00
parent e1350de346
commit 5898c861ec
15 changed files with 260 additions and 22 deletions

View File

@@ -12,7 +12,9 @@ enum {
enum {
CMODE_None = 0,
CMODE_Copy,
CMODE_Move
CMODE_Move,
CMODE_CopyFolder,
CMODE_MoveFolder
};
typedef struct {
@@ -24,7 +26,7 @@ typedef struct {
u16 keysDumped:1;
u16 curExplorerLoc:2;
u16 heldExplorerCopyLoc:2;
u16 explorerCopyMode:2;
u16 explorerCopyMode:4;
u16 currentMMCConnected:2;
u16 connectedMMCMounted:1;
};