Skip to content

Commit 3ece95d

Browse files
committed
Update hardcoded major version
1 parent 3aca3b8 commit 3ece95d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Stickman.dpr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16270,7 +16270,7 @@ begin // BEGIIIN
1627016270

1627116271
assignfile(logfile, 'log.txt');
1627216272
rewrite(logfile);
16273-
writeln(logfile, 'Stickman Warfare v2.' + inttostr((PROG_VER div 1000) mod 100) + '.' + inttostr((PROG_VER div 10) mod 100) + ' (' + inttohex(-exe_checksum, 8) + '). Log file.');
16273+
writeln(logfile, 'Stickman Warfare v' + inttostr(PROG_VER div 100000) + '.' + inttostr((PROG_VER div 1000) mod 100) + '.' + inttostr((PROG_VER div 10) mod 100) + '.' + inttostr(PROG_VER mod 10) + ' (' + inttohex(-exe_checksum, 8) + '). Log file.');
1627416274
writeln(logfile, '---------------------------------------');
1627516275

1627616276
writeln(logfile, 'Game started at:', formatdatetime('yyyy.mm.dd/hh:nn:ss', date + time));

src/myUI.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -762,7 +762,7 @@ procedure T3DMenu.Draw;
762762
g_pSprite.SetTransform(identmatr);
763763

764764
Drawtext(lowermenutext, 0.005, 0.98, 1, 1, 0, color_menu_info);
765-
Drawtext('v2.' + inttostr((PROG_VER div 1000) mod 100) + '.' + inttostr((PROG_VER div 10) mod 100) + '.', 0.8, 0.85, 1, 0.9, 1, color_menu_info);
765+
Drawtext('v' + inttostr(PROG_VER div 100000) + '.' + inttostr((PROG_VER div 1000) mod 100) + '.' + inttostr((PROG_VER div 10) mod 100) + '.' + inttostr(PROG_VER mod 10), 0.8, 0.85, 1, 0.9, 1, color_menu_info);
766766

767767

768768
apos:=D3DXVector3(0.5 * SCwidth + 0.32 * SCheight - vertScale * 32, SCheight * 0.62 - vertScale * 32, 0);

0 commit comments

Comments
 (0)