Skip to content

Commit

Permalink
Reapply "Remove Slot-1 Touch Mode setting"
Browse files Browse the repository at this point in the history
This reverts commit c3aa10b.
  • Loading branch information
RocketRobz committed Oct 3, 2024
1 parent 2c2ed42 commit bcc319f
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 13 deletions.
1 change: 0 additions & 1 deletion settings/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1452,7 +1452,6 @@ int settingsMode(void)
miscPage
.option(STR_SLOT1SCFGUNLOCK, STR_DESCRIPTION_SLOT1SCFGUNLOCK, Option::Bool(&ms().slot1SCFGUnlock), {STR_ON, STR_OFF}, {true, false})
.option(STR_SLOT1SDACCESS, STR_DESCRIPTION_SLOT1SDACCESS, Option::Bool(&ms().slot1AccessSD), {STR_ON, STR_OFF}, {true, false})
.option(STR_SLOT1TOUCHMODE, STR_DESCRIPTION_SLOT1TOUCHMODE, Option::Bool(&ms().slot1TouchMode), {STR_DSI_MODE, STR_DS_MODE}, {true, false})
.option(STR_S1SDACCESS, STR_DESCRIPTION_S1SDACCESS_1, Option::Bool(&ms().secondaryAccess), {STR_ON, STR_OFF}, {true, false});
}

Expand Down
2 changes: 1 addition & 1 deletion slot1launch/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ int main() {
CIniFile settingsini("/_nds/TWiLightMenu/settings.ini");

ignoreBlacklists = settingsini.GetInt("SRLOADER","IGNORE_BLACKLISTS",false);
TWLTOUCH = settingsini.GetInt("SRLOADER","SLOT1_TOUCH_MODE",0);
// TWLTOUCH = settingsini.GetInt("SRLOADER","SLOT1_TOUCH_MODE",0);
soundFreq = settingsini.GetInt("NDS-BOOTSTRAP","SOUND_FREQ",0);
sleepMode = settingsini.GetInt("SRLOADER","SLEEP_MODE",1);
runCardEngine = settingsini.GetInt("SRLOADER","SLOT1_CARDENGINE",1);
Expand Down
8 changes: 4 additions & 4 deletions slot1launch/bootloader/source/main.arm7.c
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ static void NDSTouchscreenMode(void) {
writePowerManagement(PM_CONTROL_REG, 0x0D); //*(unsigned char*)0x40001C2 = 0x00, 0x0D; // PWR[0]=0Dh ;<-- also part of TSC !
}

static void DSiTouchscreenMode(void) {
/* static void DSiTouchscreenMode(void) {
if (strncmp((const char*)0x04FFFA00, "no$gba", 6) != 0) {
return;
}
Expand Down Expand Up @@ -721,7 +721,7 @@ static void DSiTouchscreenMode(void) {
// Finish up!
cdcReadReg (CDC_TOUCHCNT, 0x02);
cdcWriteReg(CDC_TOUCHCNT, 0x02, 0x00);
}
} */

// SDK 5
static bool ROMsupportsDsiMode(const tNDSHeader* ndsHeader) {
Expand Down Expand Up @@ -1030,13 +1030,13 @@ void arm7_main (void) {
*(u32*)0x3FFFFC8 = 0x7884; // Fix sound pitch table for DSi mode (works with SDK5 binaries)

if (ndsHeader->unitCode == 0 || (ndsHeader->unitCode > 0 && !(*(u8*)0x02FFE1BF & BIT(0)))) {
twlTouch ? DSiTouchscreenMode() : NDSTouchscreenMode();
NDSTouchscreenMode();
*(vu16*)0x4000500 = 0x807F;
}
} else {
REG_SCFG_ROM = 0x703;

twlTouch ? DSiTouchscreenMode() : NDSTouchscreenMode();
NDSTouchscreenMode();
*(vu16*)0x4000500 = 0x807F;

REG_GPIO_WIFI |= BIT(8); // Old NDS-Wifi mode
Expand Down
6 changes: 3 additions & 3 deletions slot1launch/bootloaderAlt/source/main.arm7.c
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ static void NDSTouchscreenMode(void) {
writePowerManagement(PM_CONTROL_REG, 0x0D); //*(unsigned char*)0x40001C2 = 0x00, 0x0D; // PWR[0]=0Dh ;<-- also part of TSC !
}

static void DSiTouchscreenMode(void) {
/* static void DSiTouchscreenMode(void) {
if (strncmp((const char*)0x04FFFA00, "no$gba", 6) != 0) {
return;
}
Expand Down Expand Up @@ -543,7 +543,7 @@ static void DSiTouchscreenMode(void) {
// Finish up!
cdcReadReg (CDC_TOUCHCNT, 0x02);
cdcWriteReg(CDC_TOUCHCNT, 0x02, 0x00);
}
} */

int arm7_loadBinary (void) {
u32 chipID;
Expand Down Expand Up @@ -733,7 +733,7 @@ void arm7_main (void) {
}
}

twlTouch ? DSiTouchscreenMode() : NDSTouchscreenMode();
NDSTouchscreenMode();
*(vu16*)0x4000500 = 0x807F;

REG_GPIO_WIFI |= BIT(8); // Old NDS-Wifi mode
Expand Down
1 change: 0 additions & 1 deletion universal/include/common/twlmenusettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,6 @@ class TWLSettings

bool slot1AccessSD;
bool slot1SCFGUnlock;
bool slot1TouchMode;
bool ezFlashRam;
int limitedMode;
bool dontShowDSiWareInDSModeWarning;
Expand Down
3 changes: 0 additions & 3 deletions universal/source/common/twlmenusettings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ TWLSettings::TWLSettings()

slot1AccessSD = false;
slot1SCFGUnlock = false;
slot1TouchMode = false;
ezFlashRam = false;
limitedMode = 0;
dontShowDSiWareInDSModeWarning = false;
Expand Down Expand Up @@ -308,7 +307,6 @@ void TWLSettings::loadSettings()

slot1AccessSD = settingsini.GetInt("SRLOADER", "SLOT1_ENABLESD", slot1AccessSD);
slot1SCFGUnlock = settingsini.GetInt("SRLOADER", "SLOT1_SCFG_UNLOCK", slot1SCFGUnlock);
slot1TouchMode = settingsini.GetInt("SRLOADER", "SLOT1_TOUCH_MODE", slot1TouchMode);
ezFlashRam = settingsini.GetInt("SRLOADER", "EZ_FLASH_RAM", ezFlashRam);
limitedMode = settingsini.GetInt("SRLOADER", "LIMITED_MODE", limitedMode);
dontShowDSiWareInDSModeWarning = settingsini.GetInt("SRLOADER", "DONT_SHOW_DSIWARE_IN_DS_MODE_WARNING", dontShowDSiWareInDSModeWarning);
Expand Down Expand Up @@ -474,7 +472,6 @@ void TWLSettings::saveSettings()

settingsini.SetInt("SRLOADER", "SLOT1_ENABLESD", slot1AccessSD);
settingsini.SetInt("SRLOADER", "SLOT1_SCFG_UNLOCK", slot1SCFGUnlock);
settingsini.SetInt("SRLOADER", "SLOT1_TOUCH_MODE", slot1TouchMode);
settingsini.SetInt("SRLOADER", "LIMITED_MODE", limitedMode);
settingsini.SetInt("SRLOADER", "DONT_SHOW_DSIWARE_IN_DS_MODE_WARNING", dontShowDSiWareInDSModeWarning);
settingsini.SetInt("SRLOADER", "DSIWARE_BOOTER", dsiWareBooter);
Expand Down

0 comments on commit bcc319f

Please sign in to comment.