From 8292eec43b52ca2af794124283744d8de5e83493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Thu, 24 Dec 2015 15:40:51 -0800 Subject: [PATCH] Updated Remotery. --- 3rdparty/remotery/lib/Remotery.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/remotery/lib/Remotery.c b/3rdparty/remotery/lib/Remotery.c index d4e844bc..d8af75bb 100644 --- a/3rdparty/remotery/lib/Remotery.c +++ b/3rdparty/remotery/lib/Remotery.c @@ -189,7 +189,7 @@ void* rmtLoadLibrary(const char* path) static void rmtFreeLibrary(void* handle) { #if defined(RMT_PLATFORM_WINDOWS) - FreeLibrary(handle); + FreeLibrary((HMODULE)handle); #elif defined(RMT_PLATFORM_POSIX) dlclose(handle); #endif