summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorluisr142004 <luisr142004@gmail.com>2009-11-30 03:48:59 +0000
committerluisr142004 <luisr142004@gmail.com>2009-11-30 03:48:59 +0000
commit9e17ee5155e6808240bb9dbcdf86fcbe3ca30498 (patch)
treefd2549e91dc763915e311ff4966de94f865939f9 /Source/Core
parent5ef159a9717aaf624c4927e76fcd083e94b5d7b9 (diff)
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
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/Src/Main.cpp6
1 files changed, 2 insertions, 4 deletions
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