mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Updated Remotery.
This commit is contained in:
parent
0d6ec4d789
commit
8292eec43b
1 changed files with 1 additions and 1 deletions
2
3rdparty/remotery/lib/Remotery.c
vendored
2
3rdparty/remotery/lib/Remotery.c
vendored
|
@ -189,7 +189,7 @@ void* rmtLoadLibrary(const char* path)
|
||||||
static void rmtFreeLibrary(void* handle)
|
static void rmtFreeLibrary(void* handle)
|
||||||
{
|
{
|
||||||
#if defined(RMT_PLATFORM_WINDOWS)
|
#if defined(RMT_PLATFORM_WINDOWS)
|
||||||
FreeLibrary(handle);
|
FreeLibrary((HMODULE)handle);
|
||||||
#elif defined(RMT_PLATFORM_POSIX)
|
#elif defined(RMT_PLATFORM_POSIX)
|
||||||
dlclose(handle);
|
dlclose(handle);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue