Remove failed NAND access experiment.

This commit is contained in:
Steven Smith 2016-04-08 19:56:25 -07:00
parent ec575cd570
commit a9f30b1301
3 changed files with 1 additions and 15 deletions

View File

@ -8,13 +8,11 @@
#include "section/section.h"
#include "../screen.h"
#define MAINMENU_ITEM_COUNT 10
#define MAINMENU_ITEM_COUNT 8
static u32 mainmenu_item_count = MAINMENU_ITEM_COUNT;
static list_item mainmenu_items[MAINMENU_ITEM_COUNT] = {
{"SD", 0xFF000000, files_open_sd},
{"CTR NAND", 0xFF000000, files_open_ctrnand},
{"TWL NAND", 0xFF000000, files_open_twlnand},
{"Titles", 0xFF000000, titles_open},
{"Pending Titles", 0xFF000000, pendingtitles_open},
{"Tickets", 0xFF000000, tickets_open},

View File

@ -245,14 +245,4 @@ void files_open(FS_Archive archive) {
void files_open_sd() {
FS_Archive sdmcArchive = {ARCHIVE_SDMC, {PATH_BINARY, 0, (void*) ""}};
files_open(sdmcArchive);
}
void files_open_ctrnand() {
FS_Archive ctrNandArchive = {ARCHIVE_NAND_CTR_FS, {PATH_BINARY, 0, (void*) ""}};
files_open(ctrNandArchive);
}
void files_open_twlnand() {
FS_Archive twlNandArchive = {ARCHIVE_NAND_TWL_FS, {PATH_BINARY, 0, (void*) ""}};
files_open(twlNandArchive);
}

View File

@ -5,8 +5,6 @@
void extsavedata_open();
void files_open(FS_Archive archive);
void files_open_sd();
void files_open_ctrnand();
void files_open_twlnand();
void networkinstall_open(FS_MediaType dest);
void networkinstall_open_sd();
void networkinstall_open_nand();