aboutsummaryrefslogtreecommitdiffstats
path: root/code/win32/win_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'code/win32/win_main.c')
-rw-r--r--code/win32/win_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/win32/win_main.c b/code/win32/win_main.c
index 9131e31..ff079e5 100644
--- a/code/win32/win_main.c
+++ b/code/win32/win_main.c
@@ -527,10 +527,10 @@ extern char *FS_BuildOSPath( const char *base, const char *game, const char *qp
// fqpath will be empty if dll not loaded, otherwise will hold fully qualified path of dll module loaded
// fqpath buffersize must be at least MAX_QPATH+1 bytes long
void * QDECL Sys_LoadDll( const char *name, char *fqpath , int (QDECL **entryPoint)(int, ...),
- int (QDECL *systemcalls)(int, ...) ) {
+ long (QDECL *systemcalls)(long, ...) ) {
static int lastWarning = 0;
HINSTANCE libHandle;
- void (QDECL *dllEntry)( int (QDECL *syscallptr)(int, ...) );
+ void (QDECL *dllEntry)( long (QDECL *syscallptr)(long, ...) );
char *basepath;
char *cdpath;
char *gamedir;