fix for win64 + OpenGL crashes?!?! dumb plugin loading order... Also enable debug symbols on ogl debugfast build
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2043 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
6c7e674e69
commit
24fc93cce4
|
@ -101,19 +101,18 @@ CPluginManager::~CPluginManager()
|
||||||
// Point the m_pad[] and other variables to a certain plugin
|
// Point the m_pad[] and other variables to a certain plugin
|
||||||
bool CPluginManager::InitPlugins()
|
bool CPluginManager::InitPlugins()
|
||||||
{
|
{
|
||||||
|
|
||||||
if (! GetVideo())
|
|
||||||
{
|
|
||||||
PanicAlert("Can't init Video Plugin");
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! GetDSP())
|
if (! GetDSP())
|
||||||
{
|
{
|
||||||
PanicAlert("Can't init DSP Plugin");
|
PanicAlert("Can't init DSP Plugin");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (! GetVideo())
|
||||||
|
{
|
||||||
|
PanicAlert("Can't init Video Plugin");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// Check if we get at least one pad or wiimote
|
// Check if we get at least one pad or wiimote
|
||||||
bool pad = false;
|
bool pad = false;
|
||||||
bool wiimote = false;
|
bool wiimote = false;
|
||||||
|
|
|
@ -625,6 +625,7 @@
|
||||||
SuppressStartupBanner="true"
|
SuppressStartupBanner="true"
|
||||||
AdditionalLibraryDirectories="..\..\..\Externals\Cg64;..\..\..\Externals\GLew;..\..\..\Externals\libjpeg"
|
AdditionalLibraryDirectories="..\..\..\Externals\Cg64;..\..\..\Externals\GLew;..\..\..\Externals\libjpeg"
|
||||||
GenerateManifest="false"
|
GenerateManifest="false"
|
||||||
|
GenerateDebugInformation="true"
|
||||||
ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb"
|
ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb"
|
||||||
RandomizedBaseAddress="1"
|
RandomizedBaseAddress="1"
|
||||||
DataExecutionPrevention="0"
|
DataExecutionPrevention="0"
|
||||||
|
|
Loading…
Reference in New Issue