Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified compile.sh
100644 → 100755
Empty file.
22 changes: 11 additions & 11 deletions quickmenu/arm9/source/common/dsimenusettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ TWLSettings::TWLSettings()
wifiLed = true;
sdRemoveDetect = true;
showMicroSd = false;
gbar2DldiAccess = false;
gbar2DldiAccess = false;
showMainMenu = true;
theme = 0;
subtheme = 0;
dsiMusic = 1;

showNds = true;
showRvid = true;
showNes = true;
showGb = true;
showSmsGg = true;
showMd = true;
showSnes = true;
updateRecentlyPlayedList = true;
showNds = true;
showRvid = true;
showNes = true;
showGb = true;
showSmsGg = true;
showMd = true;
showSnes = true;
updateRecentlyPlayedList = true;
sortMethod = 0;
showDirectories = true;
showHidden = false;
Expand All @@ -42,9 +42,9 @@ TWLSettings::TWLSettings()
secondaryAccess = false;
previousUsedDevice = false;
secondaryDevice = false;
fcSaveOnSd = false;
fcSaveOnSd = false;

flashcard = EDSTTClone;
flashcard = 0;

slot1LaunchMethod = EDirect;

Expand Down
32 changes: 18 additions & 14 deletions quickmenu/arm9/source/common/dsimenusettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,24 +30,28 @@ class TWLSettings
};

/*
0: DSTT/R4i Gold/R4i-SDHC/R4 SDHC Dual-Core/R4 SDHC Upgrade/SC DSONE
1: R4DS (Original Non-SDHC version)/ M3 Simply
2: R4iDSN/R4i Gold RTS/R4 Ultra
3: Acekard 2(i)/Galaxy Eagle/M3DS Real
4: Acekard RPG
5: Ace 3DS+/Gateway Blue Card/R4iTT
6: SuperCard DSTWO
0: Unknown/None
1: DSTT/R4i Gold/R4i-SDHC/R4 SDHC Dual-Core/R4 SDHC Upgrade/SC DSONE
2: R4DS (Original Non-SDHC version)/ M3 Simply
3: R4iDSN/R4i Gold RTS/R4 Ultra
4: Acekard 2(i)/Galaxy Eagle/M3DS Real
5: Acekard RPG
6: Ace 3DS+/Gateway Blue Card/R4iTT
7: SuperCard DSTWO
8: CycloDS iEvolution
*/

enum TFlashCard
{
EDSTTClone = 0,
ER4Original = 1,
ER4iGoldClone = 2,
EAcekard2i = 3,
EAcekardRPG = 4,
EGatewayBlue = 5,
ESupercardDSTWO = 6
EUnknown = 0,
EDSTTClone = 1,
ER4Original = 2,
ER4iGoldClone = 3,
EAcekard2i = 4,
EAcekardRPG = 5,
EGatewayBlue = 6,
ESupercardDSTWO = 7,
ECycloDSi = 8
};

// Do not reorder these, just add to the end
Expand Down
Loading