Use latest wut, remove logging for now

This commit is contained in:
Maschell 2021-04-17 12:27:01 +02:00
parent 91b268df7f
commit 3c22ea9404
3 changed files with 8 additions and 4 deletions

View File

@ -1,7 +1,7 @@
FROM wiiuenv/devkitppc:20210101
FROM wiiuenv/devkitppc:20210414
COPY --from=wiiuenv/libkernel:20210109 /artifacts $DEVKITPRO
COPY --from=wiiuenv/libfunctionpatcher:20210109 /artifacts $DEVKITPRO
COPY --from=wiiuenv/wiiumodulesystem:20210313 /artifacts $DEVKITPRO
COPY --from=wiiuenv/wiiumodulesystem:20210414 /artifacts $DEVKITPRO
WORKDIR project

View File

@ -20,6 +20,8 @@ extern "C" {
WHBLogPrintf("[%23s]%30s@L%04d: " FMT "",__FILENAME__,__FUNCTION__, __LINE__, ## ARGS); \
} while (0);
#define DEBUG_FUNCTION_LINE(FMT, ARGS...)
#define DEBUG_FUNCTION_LINE_WRITE(FMT, ARGS...)do { \
WHBLogWritef("[%23s]%30s@L%04d: " FMT "",__FILENAME__,__FUNCTION__, __LINE__, ## ARGS); \
} while (0);

View File

@ -16,7 +16,8 @@ WUMS_MODULE_SKIP_WUT_INIT();
WUMS_MODULE_INIT_BEFORE_RELOCATION_DONE_HOOK();
WUMS_INITIALIZE(args) {
WHBLogUdpInit();
// Currently we have no logging because we're skipping the wut init/fini calls.
// WHBLogUdpInit();
DEBUG_FUNCTION_LINE("Setting up memory mapping!");
static uint8_t ucSetupRequired = 1;
if (!ucSetupRequired) {
@ -33,7 +34,8 @@ WUMS_INITIALIZE(args) {
}
WUMS_APPLICATION_STARTS() {
WHBLogUdpInit();
// Currently we have no logging because we're skipping the wut init/fini calls.
// WHBLogUdpInit();
//MemoryMapping_DestroyHeaps();
//MemoryMapping_CreateHeaps();