mirror of
https://github.com/wiiu-env/MemoryMappingModule.git
synced 2024-11-22 01:39:20 +01:00
Use latest wut, remove logging for now
This commit is contained in:
parent
91b268df7f
commit
3c22ea9404
@ -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
|
@ -19,6 +19,8 @@ extern "C" {
|
||||
#define DEBUG_FUNCTION_LINE(FMT, ARGS...)do { \
|
||||
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); \
|
||||
|
@ -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();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user