From e6754c367fcc8f9b10b45621c5e3a70079ca3e76 Mon Sep 17 00:00:00 2001 From: d0k3 Date: Fri, 24 Mar 2017 21:22:49 +0100 Subject: [PATCH] Only allow CTRNAND transfer in A9LH --- source/godmode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/godmode.c b/source/godmode.c index b8f8a70..9bf2c66 100644 --- a/source/godmode.c +++ b/source/godmode.c @@ -653,7 +653,7 @@ u32 FileHandlerMenu(char* current_path, u32* cursor, u32* scroll, DirStruct* cur bool cryptable_inplace = ((encryptable||decryptable) && !in_output_path && (drvtype & DRV_FAT)); bool buildable = (FTYPE_BUILDABLE(filetype)); bool buildable_legit = (FTYPE_BUILDABLE_L(filetype)); - bool transferable = (FTYPE_TRANSFERABLE(filetype) && (drvtype & DRV_FAT)); + bool transferable = (FTYPE_TRANSFERABLE(filetype) && IS_A9LH && (drvtype & DRV_FAT)); bool hsinjectable = (FTYPE_HSINJECTABLE(filetype)); bool restorable = (FTYPE_RESTORABLE(filetype) && IS_A9LH && !(drvtype & DRV_SYSNAND)); bool ebackupable = (FTYPE_EBACKUP(filetype));