From 7703ae047751cf01859c99711b7d7635ce7ae3d9 Mon Sep 17 00:00:00 2001 From: snzgoo Date: Wed, 18 Aug 2010 09:02:44 +0000 Subject: [PATCH] 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 --- Source/Plugins/Plugin_Wiimote/Src/wiimote_real.cpp | 4 ++-- 1 file 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 }