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

View File

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