mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07: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 "../MemTools.h"
|
||||
|
||||
#include "ConfigManager.h"
|
||||
#include "../ConfigManager.h"
|
||||
#include "VolumeCreator.h" // DiscIO
|
||||
|
||||
void CBoot::Load_FST(bool _bIsWii)
|
||||
|
@ -29,7 +29,7 @@
|
||||
#include "../PatchEngine.h"
|
||||
#include "../MemTools.h"
|
||||
|
||||
#include "ConfigManager.h"
|
||||
#include "../ConfigManager.h"
|
||||
#include "VolumeCreator.h"
|
||||
#include "Boot.h"
|
||||
|
||||
|
@ -109,9 +109,11 @@ bool CPluginManager::InitPlugins() {
|
||||
}
|
||||
|
||||
void CPluginManager::ShutdownPlugins() {
|
||||
for (int i=0;i<1;i++) {
|
||||
for (int i=0;i<MAXPADS;i++) {
|
||||
if (m_pad[i])
|
||||
m_pad[i]->Shutdown();
|
||||
}
|
||||
for (int i=0;i<MAXWIIMOTES;i++) {
|
||||
if (m_wiimote[i])
|
||||
m_wiimote[i]->Shutdown();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user