mirror of https://github.com/PCSX2/pcsx2.git
wxWidgets/MSW: minor fix for debug assertions under WinXP OSes.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3852 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
0bb42e1331
commit
c48ae28247
3rdparty/wxWidgets/src/msw
|
@ -85,7 +85,8 @@ bool wxDbgHelpDLL::BindFunctions(const wxDynamicLibrary& dllDbgHelp)
|
|||
// of WinDbgHlp (v6.5 or later). If it binds as NULL, that's ok. Its only needed in
|
||||
// order to reload symbols for apps that dynamically unload/reload plugins.
|
||||
|
||||
SymRefreshModuleList = (SymRefreshModuleList_t)dllDbgHelp.GetSymbol(_T("SymRefreshModuleList"));
|
||||
SymRefreshModuleList = (SymRefreshModuleList_t) (dllDbgHelp.HasSymbol(_T("SymRefreshModuleList")) ?
|
||||
dllDbgHelp.GetSymbol(_T("SymRefreshModuleList")) : NULL);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue