From 24fc93cce47fce6a83cb904c6ea58cdab397ab72 Mon Sep 17 00:00:00 2001 From: Shawn Hoffman Date: Sat, 31 Jan 2009 19:39:14 +0000 Subject: [PATCH] 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 --- Source/Core/Core/Src/PluginManager.cpp | 13 ++++++------- .../Plugins/Plugin_VideoOGL/Plugin_VideoOGL.vcproj | 1 + 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Source/Core/Core/Src/PluginManager.cpp b/Source/Core/Core/Src/PluginManager.cpp index d6db9f556f..845af6d05b 100644 --- a/Source/Core/Core/Src/PluginManager.cpp +++ b/Source/Core/Core/Src/PluginManager.cpp @@ -101,19 +101,18 @@ CPluginManager::~CPluginManager() // Point the m_pad[] and other variables to a certain plugin bool CPluginManager::InitPlugins() { - - if (! GetVideo()) - { - PanicAlert("Can't init Video Plugin"); - return false; - } - if (! GetDSP()) { PanicAlert("Can't init DSP Plugin"); return false; } + if (! GetVideo()) + { + PanicAlert("Can't init Video Plugin"); + return false; + } + // Check if we get at least one pad or wiimote bool pad = false; bool wiimote = false; diff --git a/Source/Plugins/Plugin_VideoOGL/Plugin_VideoOGL.vcproj b/Source/Plugins/Plugin_VideoOGL/Plugin_VideoOGL.vcproj index 2e2c3ec741..a05c41424c 100644 --- a/Source/Plugins/Plugin_VideoOGL/Plugin_VideoOGL.vcproj +++ b/Source/Plugins/Plugin_VideoOGL/Plugin_VideoOGL.vcproj @@ -625,6 +625,7 @@ SuppressStartupBanner="true" AdditionalLibraryDirectories="..\..\..\Externals\Cg64;..\..\..\Externals\GLew;..\..\..\Externals\libjpeg" GenerateManifest="false" + GenerateDebugInformation="true" ProgramDatabaseFile="$(TargetDir)$(TargetName).pdb" RandomizedBaseAddress="1" DataExecutionPrevention="0"