fix wrong GetPRocAddress causing infinite recursion
(How was this never hit in two years?)
This commit is contained in:
@@ -40,7 +40,7 @@ void *LowLevelWindow_Win32::GetProcAddress( RString s )
|
||||
if( pRet != NULL )
|
||||
return pRet;
|
||||
|
||||
return GetProcAddress( s );
|
||||
return ::GetProcAddress( GetModuleHandle(NULL), s );
|
||||
}
|
||||
|
||||
LowLevelWindow_Win32::LowLevelWindow_Win32()
|
||||
|
||||
Reference in New Issue
Block a user