Add missing __init_wut and __fini_wut calls

This commit is contained in:
Maschell 2020-12-26 13:27:50 +01:00
parent c8f372a77a
commit 0467178650
3 changed files with 9 additions and 1 deletions

View File

@ -5,4 +5,6 @@
extern plugin_information_t *gPluginInformation;
extern MEMHeapHandle pluginDataHeap;
extern plugin_information_on_reload_t gLinkOnReload;
extern plugin_information_on_reload_t gLinkOnReload;
extern "C" void __init_wut();
extern "C" void __fini_wut();

View File

@ -22,6 +22,8 @@ std::vector<PluginContainer> loadPlugins(const std::vector<PluginData> &pluginLi
module_information_t *gModuleData = NULL;
WUMS_INITIALIZE(args) {
__init_wut();
WHBLogUdpInit();
gModuleData = args.module_information;
if(gModuleData == NULL){
OSFatal("WUPS-Backend: Failed to get gModuleData pointer.");
@ -29,9 +31,12 @@ WUMS_INITIALIZE(args) {
if(gModuleData->version != MODULE_INFORMATION_VERSION){
OSFatal("WUPS-Backend: The module information struct version does not match.");
}
WHBLogPrintf("Init successful");
__fini_wut();
}
WUMS_APPLICATION_STARTS() {
__init_wut();
WHBLogUdpInit();
uint32_t upid = OSGetUPID();
if (upid != 2 && upid != 15) {

View File

@ -258,6 +258,7 @@ DECL_FUNCTION(uint32_t, OSReceiveMessage, OSMessageQueue *queue, OSMessage *mess
} else if (message->args[0] == 0xD1E0D1E0) {
CallHook(gPluginInformation, WUPS_LOADER_HOOK_APPLICATION_END);
CallHook(gPluginInformation, WUPS_LOADER_HOOK_FINI_WUT_DEVOPTAB);
__fini_wut();
//gInBackground = false;
//DCFlushRange(&gInBackground,4);
//unmount_sd_fat("sd");