fix wrong GetPRocAddress causing infinite recursion

(How was this never hit in two years?)
This commit is contained in:
Glenn Maynard
2007-02-21 06:35:39 +00:00
parent 33f0c55e8c
commit fce7550184
@@ -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()