fix case sensitivity in controller matching on GX

This commit is contained in:
Toad King 2014-10-12 18:07:38 -05:00
parent 58f16896c8
commit 264cfb553c
1 changed files with 2 additions and 2 deletions

View File

@ -155,7 +155,7 @@ static const char *gx_joypad_name(unsigned pad)
#endif #endif
#endif #endif
case WPAD_EXP_GAMECUBE: case WPAD_EXP_GAMECUBE:
return "Gamecube Controller"; return "GameCube Controller";
} }
return NULL; return NULL;
@ -178,7 +178,7 @@ static const char *gx_joypad_name_static(unsigned pad)
#endif #endif
#endif #endif
case WPAD_EXP_GAMECUBE: case WPAD_EXP_GAMECUBE:
return "Gamecube Controller"; return "GameCube Controller";
} }
return NULL; return NULL;