From 8d1557191fd7ec18fe0e7ccc0b006391dc8de0ab Mon Sep 17 00:00:00 2001 From: aspargas2 Date: Sat, 8 Jan 2022 19:07:53 -0500 Subject: [PATCH] fix conflicting move/copy flags --- arm9/source/filesys/fsutil.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arm9/source/filesys/fsutil.c b/arm9/source/filesys/fsutil.c index f785bfe..0359ce3 100644 --- a/arm9/source/filesys/fsutil.c +++ b/arm9/source/filesys/fsutil.c @@ -12,8 +12,8 @@ #include "ui.h" #include "swkbd.h" -#define SKIP_CUR (1UL<<10) -#define OVERWRITE_CUR (1UL<<11) +#define SKIP_CUR (1UL<<11) +#define OVERWRITE_CUR (1UL<<12) #define _MAX_FS_OPT 8 // max file selector options