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
This commit is contained in:
luisr142004
2009-11-30 03:48:59 +00:00
parent 5ef159a971
commit 9e17ee5155
6 changed files with 34 additions and 48 deletions

View File

@ -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