mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-31 11:10:33 +00:00
MinGW C build fix
git-svn-id: https://svn.eduke32.com/eduke32@3161 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
89c9a201b5
commit
c9cd191bce
1 changed files with 1 additions and 1 deletions
|
@ -385,7 +385,7 @@ int32_t WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, in
|
|||
nedalloc::nedpool_t *(WINAPI *nedcreatepool)(size_t, int);
|
||||
if ((nedcreatepool = (nedalloc::nedpool_t *(WINAPI *)(size_t, int))GetProcAddress(nedhandle, "nedcreatepool")))
|
||||
#else
|
||||
nedpool_t *(WINAPI *nedcreatepool)(size_t, int);
|
||||
nedpool *(WINAPI *nedcreatepool)(size_t, int);
|
||||
if ((nedcreatepool = (void *)GetProcAddress(nedhandle, "nedcreatepool")))
|
||||
#endif
|
||||
nedcreatepool(SYSTEM_POOL_SIZE, -1);
|
||||
|
|
Loading…
Reference in a new issue