https://bugs.winehq.org/show_bug.cgi?id=55037
Bug ID: 55037 Summary: vbscript: Colon on new line after if fails Product: Wine Version: unspecified Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: vbscript Assignee: wine-bugs@winehq.org Reporter: francisdb@gmail.com Distribution: ---
looks similar to bug 54234 but then for the Then instead of the Else
``` If Keycode = StartGameKey Then :pupevent 800 End If ```
without the colon this works
``` If Keycode = StartGameKey Then pupevent 800 End If ```