1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-03-21 12:28:56 +01:00

Fixed win32 compiling error.

This commit is contained in:
David Anderson 2008-11-23 21:25:45 -06:00
parent 110b1f3a10
commit 97b323a583

View File

@ -96,7 +96,7 @@ mm_LoadMetamodLibrary(MetamodBackend backend, char *buffer, size_t maxlength)
"metamod.%s" LIBRARY_MINEXT,
backend_names[backend]);
mm_library = mm_LoadLibrary(mm_path, buffer, maxlength);
mm_library = (HMODULE)mm_LoadLibrary(mm_path, buffer, maxlength);
return (mm_library != NULL);
}