diff --git a/installguide/Interface.html b/installguide/Interface.html index 9a33e3a70..36f81f97c 100644 --- a/installguide/Interface.html +++ b/installguide/Interface.html @@ -99,14 +99,16 @@
Returns the version number of Visual PinMAME as an 8-digit string
- "vvmmbbrr":
+ "vvmmbbrr.bbbb":
vv = Major version
mm = Minor version
bb = Beta version
- rr = Revision
+ rr = Revision
+ bbbb = Build number
Example:
- A result of "00990201" signifies "Version 0.99 Beta 2 Rev A
- If (Controller.Version<"00990201") Then MsgBox "You need a newer
+ A result of "00990201.4711" signifies "Version 0.99 Beta 2 Rev A build #4711
+ It is possible to amend the build number while checking the version, but not mandatory!
+ If (Controller.Version<"00990201.4711") Then MsgBox "You need a newer
version of VPinMAME." : Exit Sub