From 9e17ee5155e6808240bb9dbcdf86fcbe3ca30498 Mon Sep 17 00:00:00 2001 From: luisr142004 Date: Mon, 30 Nov 2009 03:48:59 +0000 Subject: fix a linux wiimote compile error and apply some little changes to the dx plugin :P git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4631 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DolphinWX/Src/Main.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'Source/Core') diff --git a/Source/Core/DolphinWX/Src/Main.cpp b/Source/Core/DolphinWX/Src/Main.cpp index 66ceb92b5f..9cef859181 100644 --- a/Source/Core/DolphinWX/Src/Main.cpp +++ b/Source/Core/DolphinWX/Src/Main.cpp @@ -619,12 +619,10 @@ void Host_SetDebugMode(bool) void Host_SetWaitCursor(bool enable) { #ifdef _WIN32 - if (enable) + if(enable) { SetCursor(LoadCursor(NULL, IDC_WAIT)); - } - else - { + } else { SetCursor(LoadCursor(NULL, IDC_ARROW)); } #endif -- cgit v1.2.3