Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed Jul 6, 2024
1 parent 4d9e4f7 commit fd80327
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM ghcr.io/wiiu-env/devkitppc:20240505
FROM ghcr.io/wiiu-env/devkitppc:20240704

WORKDIR project
2 changes: 1 addition & 1 deletion source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
2 changes: 0 additions & 2 deletions source/utils/PairUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,6 @@ PairMenu::~PairMenu() {
CCRSysExit();
}

extern "C" bool WPADStartSyncDevice();

bool PairMenu::ProcessPairScreen() {
switch (mState) {
case STATE_SYNC_WPAD: {
Expand Down

0 comments on commit fd80327

Please sign in to comment.