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

@@ -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) {