mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-22 05:45:38 +00:00
Using Game::INPUT_* instead of obsolete GAME_INPUT_*
This commit is contained in:
parent
c013eab711
commit
df283d9aa3
|
@ -785,7 +785,7 @@ int Supermodel(const Game &game, ROMSet *rom_set, IEmulator *Model3, CInputs *In
|
|||
|
||||
// Hide mouse if fullscreen, enable crosshairs for gun games
|
||||
Inputs->GetInputSystem()->SetMouseVisibility(!s_runtime_config["FullScreen"].ValueAs<bool>());
|
||||
gameHasLightguns = !!(game.inputs & (GAME_INPUT_GUN1|GAME_INPUT_GUN2));
|
||||
gameHasLightguns = !!(game.inputs & (Game::INPUT_GUN1|Game::INPUT_GUN2));
|
||||
if (gameHasLightguns)
|
||||
videoInputs = Inputs;
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue