Skip to content

Commit

Permalink
Update Dockerfile to use WUPS 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed Sep 17, 2021
1 parent dd28076 commit dbff9ca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM wiiuenv/devkitppc:20210414
FROM wiiuenv/devkitppc:20210917

COPY --from=wiiuenv/wiiupluginsystem:20210417 /artifacts $DEVKITPRO
COPY --from=wiiuenv/wiiupluginsystem:20210917 /artifacts $DEVKITPRO
COPY --from=wiiuenv/libiosuhax:20210109 /artifacts $DEVKITPRO

WORKDIR project
11 changes: 7 additions & 4 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <coreinit/cache.h>
#include "utils/logger.h"
#include <whb/log_udp.h>
#include <whb/libmanager.h>
#include "virtualpath.h"
#include "BackgroundThread.hpp"

Expand All @@ -29,10 +30,12 @@ int fsaFd = -1;
BackgroundThread * thread = nullptr;

/* Entry point */
ON_APPLICATION_START() {
ACGetAssignedAddress(&hostIpAddress);

WHBLogUdpInit();
ON_APPLICATION_START() {
nn::ac::Initialize();
nn::ac::ConnectAsync();
nn::ac::GetAssignedAddress(&hostIpAddress);

WHBLogUdpInit();

//!*******************************************************************
//! Initialize FS *
Expand Down

0 comments on commit dbff9ca

Please sign in to comment.