diff --git a/distribution/changelog.txt b/distribution/changelog.txt index a869a2e9d0..57dcb79633 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -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. diff --git a/src/openrct2/scenes/intro/IntroScene.cpp b/src/openrct2/scenes/intro/IntroScene.cpp index 3ac2ee3ffb..f4c48fef5e 100644 --- a/src/openrct2/scenes/intro/IntroScene.cpp +++ b/src/openrct2/scenes/intro/IntroScene.cpp @@ -272,7 +272,7 @@ namespace OpenRCT2 static void ScreenIntroProcessMouseInput() { - if (ContextGetCursorState()->any == CURSOR_PRESSED) + if (ContextGetCursorState()->any & CURSOR_DOWN) { ScreenIntroSkipPart(); }