Add light gun option for Genesis gamepads
seems to work; why do we have our own enum instead of using one of GPGX'?
This commit is contained in:
parent
9ff4b904c6
commit
92241b15cf
|
@ -145,6 +145,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
|
||||||
return LibGPGX.INPUT_SYSTEM.SYSTEM_WAYPLAY;
|
return LibGPGX.INPUT_SYSTEM.SYSTEM_WAYPLAY;
|
||||||
case ControlType.Mouse:
|
case ControlType.Mouse:
|
||||||
return LibGPGX.INPUT_SYSTEM.SYSTEM_MOUSE;
|
return LibGPGX.INPUT_SYSTEM.SYSTEM_MOUSE;
|
||||||
|
case ControlType.LightPhaser:
|
||||||
|
return LibGPGX.INPUT_SYSTEM.SYSTEM_LIGHTPHASER;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -173,7 +175,8 @@ namespace BizHawk.Emulation.Cores.Consoles.Sega.gpgx
|
||||||
Activator,
|
Activator,
|
||||||
Teamplayer,
|
Teamplayer,
|
||||||
Wayplay,
|
Wayplay,
|
||||||
Mouse
|
Mouse,
|
||||||
|
LightPhaser,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue