From a0383e6b6a39e7e3305f39abb385e6405ccb5cdc Mon Sep 17 00:00:00 2001 From: aliaspider Date: Sun, 6 Nov 2016 18:59:39 +0100 Subject: [PATCH] (WIIU) keep the dynlib handles. --- wiiu/system/dynamic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wiiu/system/dynamic.c b/wiiu/system/dynamic.c index da1766a5c2..e10c13933b 100644 --- a/wiiu/system/dynamic.c +++ b/wiiu/system/dynamic.c @@ -8,11 +8,11 @@ #undef EXPORT #undef EXPORT_BEGIN -#undef EXPORT_END +//#undef EXPORT_END #define EXPORT(name) do{if(OSDynLoad_FindExport(handle, 0, #name, &addr_##name) < 0)OSFatal("Function " # name " is NULL");} while(0) #define EXPORT_BEGIN(lib) OSDynLoad_Acquire(#lib, &handle) -#define EXPORT_END() OSDynLoad_Release(handle) +//#define EXPORT_END() OSDynLoad_Release(handle) void InitFunctionPointers(void) {