Setup: "ParseVersion" gives Deprecated Warning, fixing the warning.

This commit is contained in:
Fabian Dill 2022-05-26 19:49:02 +02:00 committed by KonoTyran
parent 65c83393bb
commit 28949853f7
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@
#define MyAppExeName "ArchipelagoServer.exe"
#define MyAppIcon "data/icon.ico"
#dim VersionTuple[4]
#define MyAppVersion ParseVersion(source_path + '\ArchipelagoServer.exe', VersionTuple[0], VersionTuple[1], VersionTuple[2], VersionTuple[3])
#define MyAppVersion GetVersionComponents(source_path + '\ArchipelagoServer.exe', VersionTuple[0], VersionTuple[1], VersionTuple[2], VersionTuple[3])
#define MyAppVersionText Str(VersionTuple[0])+"."+Str(VersionTuple[1])+"."+Str(VersionTuple[2])