1
0
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:
Gymnasiast
2025-10-17 23:53:11 +02:00
parent 323a1839dc
commit 6cb804804e
2 changed files with 2 additions and 1 deletions

View File

@@ -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.

View File

@@ -272,7 +272,7 @@ namespace OpenRCT2
static void ScreenIntroProcessMouseInput()
{
if (ContextGetCursorState()->any == CURSOR_PRESSED)
if (ContextGetCursorState()->any & CURSOR_DOWN)
{
ScreenIntroSkipPart();
}