mirror of
https://github.com/OpenDriver2/REDRIVER2.git
synced 2024-11-25 20:02:33 +01:00
- Retro: Press Select to toggle overlays + hide HUD when editing camera
This commit is contained in:
parent
463200b846
commit
c187a98658
@ -29,8 +29,8 @@ up=up
|
|||||||
down=down
|
down=down
|
||||||
left=left
|
left=left
|
||||||
right=right
|
right=right
|
||||||
start=e
|
start=w
|
||||||
select=r
|
select=H
|
||||||
|
|
||||||
[render]
|
[render]
|
||||||
windowWidth=1280
|
windowWidth=1280
|
||||||
|
@ -1400,7 +1400,7 @@ void ShowReplayOptions(void)
|
|||||||
else if(PlayMode != 2 && PlayMode != 3)
|
else if(PlayMode != 2 && PlayMode != 3)
|
||||||
UnPauseSound();
|
UnPauseSound();
|
||||||
|
|
||||||
if (!gDoOverlays && !DirectorMenuActive)
|
if (!gDoOverlays && (!DirectorMenuActive || EditMode > 0))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ShowReplayMenu();
|
ShowReplayMenu();
|
||||||
@ -1754,7 +1754,14 @@ void ControlReplay(void)
|
|||||||
debounce = 1;
|
debounce = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((padd & 0x8000) == 0 && (padd & 0x7040) == 0)
|
if ((padd & 0x100) && debounce == 0)
|
||||||
|
{
|
||||||
|
// Retro: Press Select to toggle overlays
|
||||||
|
gDoOverlays ^= 1;
|
||||||
|
debounce = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((padd & 0x8000) == 0 && (padd & 0x7140) == 0)
|
||||||
{
|
{
|
||||||
debounce = 0;
|
debounce = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user