-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGameVersion.cpp
More file actions
61 lines (49 loc) · 1.82 KB
/
Copy pathGameVersion.cpp
File metadata and controls
61 lines (49 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#ifdef PRECOMPILEDHEADERS
#include "JA2 All.h"
#else
#include "Types.h"
#include "GameVersion.h"
#endif
//
// Keeps track of the game version
//
// ------------------------------
// MAP EDITOR (Release and Debug) BUILD VERSION
// ------------------------------
#ifdef JA2EDITOR
#ifdef JA2UB
CHAR16 zVersionLabel[256] = { L"Unfinished Business - Map Editor v1.13.7609 (2014 Official Release)" };
#else
CHAR16 zVersionLabel[256] = { L"Map Editor Vengeance: Reloaded 1.13.7609+" };
#endif
// ------------------------------
// DEBUG BUILD VERSIONS
// ------------------------------
#elif defined JA2BETAVERSION
//DEBUG BUILD VERSION
#ifdef JA2UB
CHAR16 zVersionLabel[256] = { L"Debug: Unfinished Business - v1.13.7609 (2014 Official Release)" };
#elif defined (JA113DEMO)
CHAR16 zVersionLabel[256] = { L"Debug: Jagged Alliance 2 Demo - v1.13.7609 (2014 Official Release)" };
#else
CHAR16 zVersionLabel[256] = { L"Debug: JA2 Vengeance: Reloaded 1.13.7609+ (The Trillionaire Tantrum)" };
#endif
#elif defined CRIPPLED_VERSION
//RELEASE BUILD VERSION s
CHAR16 zVersionLabel[256] = { L"Beta v. 0.98" };
// ------------------------------
// RELEASE BUILD VERSIONS
// ------------------------------
#else
//RELEASE BUILD VERSION
#ifdef JA2UB
CHAR16 zVersionLabel[256] = { L"Unfinished Business - v1.13.7609 (2014 Official Release)" };
#elif defined (JA113DEMO)
CHAR16 zVersionLabel[256] = { L"Jagged Alliance 2 Demo - v1.13.7609 (2014 Official Release)" };
#else
CHAR16 zVersionLabel[256] = { L"JA2 Vengeance: Reloaded 1.13.7609+ (The Trillionaire Tantrum)" };
#endif
#endif
CHAR8 czVersionNumber[16] = { "Build 17.08.26" }; //YY.MM.DD
CHAR16 zTrackingNumber[16] = { L"Z" };
// SAVE_GAME_VERSION is defined in header, change it there