From a56d9f49ad0c5dc499a9c622a74721af0fc70645 Mon Sep 17 00:00:00 2001 From: zakk Date: Mon, 26 Sep 2005 02:36:52 +0000 Subject: Hopefully this will fix win32 msvc.netsuperduper++220000 extra entropy edition compilation, and I updated the readme a little apparently. git-svn-id: svn://svn.icculus.org/quake3/trunk@109 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/win32/win_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'code/win32') diff --git a/code/win32/win_main.c b/code/win32/win_main.c index a66f712..6980bd4 100644 --- a/code/win32/win_main.c +++ b/code/win32/win_main.c @@ -606,8 +606,8 @@ void * QDECL Sys_LoadDll( const char *name, char *fqpath , long (QDECL **entryPo } #endif - dllEntry = ( void (QDECL *)( int (QDECL *)( int, ... ) ) )GetProcAddress( libHandle, "dllEntry" ); - *entryPoint = (int (QDECL *)(int,...))GetProcAddress( libHandle, "vmMain" ); + dllEntry = ( void (QDECL *)(long (QDECL *)( long, ... ) ) )GetProcAddress( libHandle, "dllEntry" ); + *entryPoint = (long (QDECL *)(long,...))GetProcAddress( libHandle, "vmMain" ); if ( !*entryPoint || !dllEntry ) { FreeLibrary( libHandle ); return NULL; -- cgit v1.2.3