https://bugs.winehq.org/show_bug.cgi?id=55093
Bug ID: 55093 Summary: vbscript: if boolean condition should work without braces Product: Wine Version: 8.9 Hardware: aarch64 OS: Mac OS X Status: UNCONFIRMED Severity: normal Priority: P2 Component: vbscript Assignee: wine-bugs@winehq.org Reporter: francisdb@gmail.com
This is what I had to patch to make the script work with wine vbscript
- If isGIOn <> Not IsOff Then + If isGIOn <> (Not IsOff) Then
Could be related to some operator priority issue?