medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 1ef4095e7e6c6d7bdd9a29c4840af1043fd9a321
parent 4622e637784d6aa76d8b9f18f3e3cab6c81016b5
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Wed Jan 25 23:44:30 +0200

library_open should check system32 too(?)

Diffstat:
win32_library.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/win32_library.h b/win32_library.h @@ -5,7 +5,7 @@ typedef HMODULE Library; Library library_open( const char * path ) { - return LoadLibraryA( path ); + return LoadLibraryExA( path, NULL, LOAD_LIBRARY_SEARCH_SYSTEM32 ); } FARPROC library_function( Library lib, const char * name ) {