mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-21 14:02:59 +01:00
Fix: scrolling intro cannot be skipped using a mouse click
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
- Fix: [#25342] The Go-Karts medium right gentle sloped turn does not have a tunnel at the end.
|
||||
- Fix: [#25350] The scrolling intro background switches colour halfway through (original bug).
|
||||
- Fix: [#25350] When skipping the scrolling intro, the screen does not get cleared properly.
|
||||
- Fix: [#25350] Scrolling intro cannot be skipped using a mouse click.
|
||||
- Fix: [#25358] The Stand Up Roller Coaster left corkscrew does not block supports correctly.
|
||||
- Fix: [#25363] The Mine Train Coaster flat-to-steep track pieces do not block all metal supports.
|
||||
- Fix: [#25369] The Go-Karts medium turns and small flat and sloped turns do not block metal supports correctly.
|
||||
|
||||
@@ -272,7 +272,7 @@ namespace OpenRCT2
|
||||
|
||||
static void ScreenIntroProcessMouseInput()
|
||||
{
|
||||
if (ContextGetCursorState()->any == CURSOR_PRESSED)
|
||||
if (ContextGetCursorState()->any & CURSOR_DOWN)
|
||||
{
|
||||
ScreenIntroSkipPart();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user