1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-03 18:07:53 +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

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