Skip to content

Commit e6754c3

Browse files
committed
Only allow CTRNAND transfer in A9LH
1 parent bf1f536 commit e6754c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/godmode.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ u32 FileHandlerMenu(char* current_path, u32* cursor, u32* scroll, DirStruct* cur
653653
bool cryptable_inplace = ((encryptable||decryptable) && !in_output_path && (drvtype & DRV_FAT));
654654
bool buildable = (FTYPE_BUILDABLE(filetype));
655655
bool buildable_legit = (FTYPE_BUILDABLE_L(filetype));
656-
bool transferable = (FTYPE_TRANSFERABLE(filetype) && (drvtype & DRV_FAT));
656+
bool transferable = (FTYPE_TRANSFERABLE(filetype) && IS_A9LH && (drvtype & DRV_FAT));
657657
bool hsinjectable = (FTYPE_HSINJECTABLE(filetype));
658658
bool restorable = (FTYPE_RESTORABLE(filetype) && IS_A9LH && !(drvtype & DRV_SYSNAND));
659659
bool ebackupable = (FTYPE_EBACKUP(filetype));

0 commit comments

Comments
 (0)