diff --git a/Dockerfile b/Dockerfile index 1185929..d78def6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,3 @@ -FROM ghcr.io/wiiu-env/devkitppc:20240505 +FROM ghcr.io/wiiu-env/devkitppc:20240704 WORKDIR project diff --git a/source/main.cpp b/source/main.cpp index 1f618c5..f6de128 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -441,7 +441,7 @@ void ClearSavedFrameBuffers() { void AbortQuickStartMenu() { CCRCDCDrcState state = {}; CCRCDCSysGetDrcState(CCR_CDC_DESTINATION_DRC0, &state); - if (state.state == CCR_CDC_DRC_STATE_IN_QUICK_START_MENU) { + if (state.state == CCR_CDC_DRC_STATE_SUBACTIVE) { state.state = CCR_CDC_DRC_STATE_ACTIVE; CCRCDCSysSetDrcState(CCR_CDC_DESTINATION_DRC0, &state); } diff --git a/source/utils/PairUtils.cpp b/source/utils/PairUtils.cpp index 688b32f..3924ece 100644 --- a/source/utils/PairUtils.cpp +++ b/source/utils/PairUtils.cpp @@ -140,8 +140,6 @@ PairMenu::~PairMenu() { CCRSysExit(); } -extern "C" bool WPADStartSyncDevice(); - bool PairMenu::ProcessPairScreen() { switch (mState) { case STATE_SYNC_WPAD: {