mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-25 07:21:14 +01:00
path on windows seems relative
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1913 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
a6447d1758
commit
97818d6fe4
@ -45,7 +45,7 @@
|
|||||||
#include "../PowerPC/SymbolDB.h"
|
#include "../PowerPC/SymbolDB.h"
|
||||||
#include "../MemTools.h"
|
#include "../MemTools.h"
|
||||||
|
|
||||||
#include "ConfigManager.h"
|
#include "../ConfigManager.h"
|
||||||
#include "VolumeCreator.h" // DiscIO
|
#include "VolumeCreator.h" // DiscIO
|
||||||
|
|
||||||
void CBoot::Load_FST(bool _bIsWii)
|
void CBoot::Load_FST(bool _bIsWii)
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include "../PatchEngine.h"
|
#include "../PatchEngine.h"
|
||||||
#include "../MemTools.h"
|
#include "../MemTools.h"
|
||||||
|
|
||||||
#include "ConfigManager.h"
|
#include "../ConfigManager.h"
|
||||||
#include "VolumeCreator.h"
|
#include "VolumeCreator.h"
|
||||||
#include "Boot.h"
|
#include "Boot.h"
|
||||||
|
|
||||||
|
@ -109,9 +109,11 @@ bool CPluginManager::InitPlugins() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void CPluginManager::ShutdownPlugins() {
|
void CPluginManager::ShutdownPlugins() {
|
||||||
for (int i=0;i<1;i++) {
|
for (int i=0;i<MAXPADS;i++) {
|
||||||
if (m_pad[i])
|
if (m_pad[i])
|
||||||
m_pad[i]->Shutdown();
|
m_pad[i]->Shutdown();
|
||||||
|
}
|
||||||
|
for (int i=0;i<MAXWIIMOTES;i++) {
|
||||||
if (m_wiimote[i])
|
if (m_wiimote[i])
|
||||||
m_wiimote[i]->Shutdown();
|
m_wiimote[i]->Shutdown();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user