From 4b21fa46d5cd9d58d5909c4459b9936b13111f43 Mon Sep 17 00:00:00 2001 From: John Peterson Date: Sun, 1 Feb 2009 16:32:31 +0000 Subject: [PATCH] PadSimple and Wiimote: Changed return false to return true for the ifdef option git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2063 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp | 2 +- Source/Plugins/Plugin_Wiimote/Src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp b/Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp index 7f2eec588c..ffdbb23ad3 100644 --- a/Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp +++ b/Source/Plugins/Plugin_PadSimple/Src/PadSimple.cpp @@ -118,7 +118,7 @@ bool IsFocus() else return false; #else - return false; + return true; #endif } diff --git a/Source/Plugins/Plugin_Wiimote/Src/main.cpp b/Source/Plugins/Plugin_Wiimote/Src/main.cpp index 42c71ab23e..6d1f639abf 100644 --- a/Source/Plugins/Plugin_Wiimote/Src/main.cpp +++ b/Source/Plugins/Plugin_Wiimote/Src/main.cpp @@ -348,7 +348,7 @@ bool IsFocus() else return false; #else - return false; + return true; #endif }