Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
OS/2: fixed inverted logic bug (thanks, Ozkan!).
- Loading branch information
Showing
with
1 addition
and
1 deletion.
-
+1
−1
src/dynapi/SDL_dynapi.c
|
@@ -244,7 +244,7 @@ static SDL_INLINE void *get_sdlapi_entry(const char *fname, const char *sym) |
|
|
PFN retval = NULL; |
|
|
char error[256]; |
|
|
if (NO_ERROR == DosLoadModule(&error, sizeof(error), fname, &hmodule)) { |
|
|
if (NO_ERROR == DosQueryProcAddr(hmodule, 0, sym, &retval)) { |
|
|
if (NO_ERROR != DosQueryProcAddr(hmodule, 0, sym, &retval)) { |
|
|
DosFreeModule(hmodule); |
|
|
} |
|
|
} |
|
|