summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsnzgoo <snzgoo@gmail.com>2010-08-18 09:02:44 +0000
committersnzgoo <snzgoo@gmail.com>2010-08-18 09:02:44 +0000
commit7703ae047751cf01859c99711b7d7635ce7ae3d9 (patch)
treeedf83553d708439a37f8ea6ada8405f21734e96b
parent4a61432f14e547bb9a3f4d4189d33c13c4b602c2 (diff)
Fixes a couple of issues, like wiimotes not found ingame(not all of them of course) and wiimote plugin not accessible under xp (old wiimote plugin).
sorry for that inconvenience. BTW Im gonna take a break for a few weeks for health reasons, cya. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6109 8ced0084-cf51-0410-be5f-012b33b47a6e
-rw-r--r--Source/Plugins/Plugin_Wiimote/Src/wiimote_real.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Plugins/Plugin_Wiimote/Src/wiimote_real.cpp b/Source/Plugins/Plugin_Wiimote/Src/wiimote_real.cpp
index 703bd61c2c..9e3a60010f 100644
--- a/Source/Plugins/Plugin_Wiimote/Src/wiimote_real.cpp
+++ b/Source/Plugins/Plugin_Wiimote/Src/wiimote_real.cpp
@@ -105,8 +105,8 @@ CWiiMote(u8 _WiimoteNumber, wiimote_t* _pWiimote)
#ifdef _WIN32
// F|RES: i dunno if we really need this
- //CancelIo(m_pWiiMote->dev_handle);
- CancelIoEx(m_pWiiMote->dev_handle,NULL);
+ CancelIo(m_pWiiMote->dev_handle);
+ //CancelIoEx(m_pWiiMote->dev_handle,NULL); //causing problems under older win systems
#endif
}