From f6dbed41cf04b86242d2f670c91d44af174fefc0 Mon Sep 17 00:00:00 2001 From: d0k3 Date: Wed, 11 Oct 2017 23:52:21 +0200 Subject: [PATCH] Temporarily disable GBA VC Save dumps from SD --- source/godmode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/godmode.c b/source/godmode.c index 046bc28..9595296 100644 --- a/source/godmode.c +++ b/source/godmode.c @@ -865,7 +865,7 @@ u32 FileHandlerMenu(char* current_path, u32* cursor, u32* scroll, PaneData** pan bool scriptable = (FTYPE_SCRIPT(filetype)); bool bootable = (FTYPE_BOOTABLE(filetype)); bool installable = (FTYPE_INSTALLABLE(filetype)); - bool agbexportable = (FTPYE_AGBSAVE(filetype)); + bool agbexportable = (FTPYE_AGBSAVE(filetype) && (drvtype & DRV_VIRTUAL) && (drvtype & DRV_SYSNAND)); bool agbimportable = (FTPYE_AGBSAVE(filetype) && (drvtype & DRV_VIRTUAL) && (drvtype & DRV_SYSNAND)); bool special_opt = mountable || verificable || decryptable || encryptable || cia_buildable || cia_buildable_legit || cxi_dumpable || tik_buildable || key_buildable || titleinfo || renamable || transferable || hsinjectable || restorable || xorpadable || ebackupable || ncsdfixable || extrcodeable || keyinitable || bootable || scriptable || installable || agbexportable || agbimportable;