mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-22 17:49:43 +01:00
Handle WiiU/Switch GameCube adapter product ID
This commit is contained in:
parent
135934289e
commit
c881f621a3
1 changed files with 5 additions and 0 deletions
|
@ -194,6 +194,11 @@ void BUTTONGLYPHS_update_layout(Uint16 vendor, Uint16 product)
|
||||||
{
|
{
|
||||||
layout = LAYOUT_NINTENDO_SWITCH_JOYCON_R;
|
layout = LAYOUT_NINTENDO_SWITCH_JOYCON_R;
|
||||||
}
|
}
|
||||||
|
else if (product == 0x0337)
|
||||||
|
{
|
||||||
|
/* FIXME: GameCube glyphs? -flibit */
|
||||||
|
layout = LAYOUT_XBOX;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
layout = LAYOUT_NINTENDO_SWITCH_PRO;
|
layout = LAYOUT_NINTENDO_SWITCH_PRO;
|
||||||
|
|
Loading…
Reference in a new issue