mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-22 04:39:17 +01:00
Add missing __init_wut and __fini_wut calls
This commit is contained in:
parent
c8f372a77a
commit
0467178650
@ -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();
|
@ -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) {
|
||||
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user