mirror of
https://gitlab.com/Theopse/fbi-i18n-zh.git
synced 2025-04-24 18:36:51 +08:00
Remove failed NAND access experiment.
This commit is contained in:
parent
ec575cd570
commit
a9f30b1301
@ -8,13 +8,11 @@
|
|||||||
#include "section/section.h"
|
#include "section/section.h"
|
||||||
#include "../screen.h"
|
#include "../screen.h"
|
||||||
|
|
||||||
#define MAINMENU_ITEM_COUNT 10
|
#define MAINMENU_ITEM_COUNT 8
|
||||||
|
|
||||||
static u32 mainmenu_item_count = MAINMENU_ITEM_COUNT;
|
static u32 mainmenu_item_count = MAINMENU_ITEM_COUNT;
|
||||||
static list_item mainmenu_items[MAINMENU_ITEM_COUNT] = {
|
static list_item mainmenu_items[MAINMENU_ITEM_COUNT] = {
|
||||||
{"SD", 0xFF000000, files_open_sd},
|
{"SD", 0xFF000000, files_open_sd},
|
||||||
{"CTR NAND", 0xFF000000, files_open_ctrnand},
|
|
||||||
{"TWL NAND", 0xFF000000, files_open_twlnand},
|
|
||||||
{"Titles", 0xFF000000, titles_open},
|
{"Titles", 0xFF000000, titles_open},
|
||||||
{"Pending Titles", 0xFF000000, pendingtitles_open},
|
{"Pending Titles", 0xFF000000, pendingtitles_open},
|
||||||
{"Tickets", 0xFF000000, tickets_open},
|
{"Tickets", 0xFF000000, tickets_open},
|
||||||
|
@ -246,13 +246,3 @@ void files_open_sd() {
|
|||||||
FS_Archive sdmcArchive = {ARCHIVE_SDMC, {PATH_BINARY, 0, (void*) ""}};
|
FS_Archive sdmcArchive = {ARCHIVE_SDMC, {PATH_BINARY, 0, (void*) ""}};
|
||||||
files_open(sdmcArchive);
|
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);
|
|
||||||
}
|
|
@ -5,8 +5,6 @@
|
|||||||
void extsavedata_open();
|
void extsavedata_open();
|
||||||
void files_open(FS_Archive archive);
|
void files_open(FS_Archive archive);
|
||||||
void files_open_sd();
|
void files_open_sd();
|
||||||
void files_open_ctrnand();
|
|
||||||
void files_open_twlnand();
|
|
||||||
void networkinstall_open(FS_MediaType dest);
|
void networkinstall_open(FS_MediaType dest);
|
||||||
void networkinstall_open_sd();
|
void networkinstall_open_sd();
|
||||||
void networkinstall_open_nand();
|
void networkinstall_open_nand();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user