mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-22 20:02:03 +00:00
Revert "Use new two digit version number for HMS"
This reverts commit 7d2b3b0877
.
This commit is contained in:
parent
4b19a3321b
commit
ae45333535
1 changed files with 6 additions and 4 deletions
|
@ -346,13 +346,14 @@ HMS_register (void)
|
||||||
snprintf(post, sizeof post,
|
snprintf(post, sizeof post,
|
||||||
"port=%d&"
|
"port=%d&"
|
||||||
"title=%s&"
|
"title=%s&"
|
||||||
"version=%d.%d",
|
"version=%d.%d.%d",
|
||||||
|
|
||||||
current_port,
|
current_port,
|
||||||
|
|
||||||
title,
|
title,
|
||||||
|
|
||||||
VERSION,
|
VERSION/100,
|
||||||
|
VERSION%100,
|
||||||
SUBVERSION
|
SUBVERSION
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -488,8 +489,9 @@ HMS_fetch_servers (msg_server_t *list, int room_number, int query_id)
|
||||||
doing_shit = 1;
|
doing_shit = 1;
|
||||||
|
|
||||||
snprintf(local_version, sizeof local_version,
|
snprintf(local_version, sizeof local_version,
|
||||||
"%d.%d",
|
"%d.%d.%d",
|
||||||
VERSION,
|
VERSION/100,
|
||||||
|
VERSION%100,
|
||||||
SUBVERSION
|
SUBVERSION
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue