mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-05 16:01:04 +00:00
Use new two digit version number for HMS
This commit is contained in:
parent
233e6627de
commit
bdcae79cd2
1 changed files with 4 additions and 6 deletions
|
@ -337,14 +337,13 @@ HMS_register (void)
|
||||||
snprintf(post, sizeof post,
|
snprintf(post, sizeof post,
|
||||||
"port=%d&"
|
"port=%d&"
|
||||||
"title=%s&"
|
"title=%s&"
|
||||||
"version=%d.%d.%d",
|
"version=%d.%d",
|
||||||
|
|
||||||
current_port,
|
current_port,
|
||||||
|
|
||||||
title,
|
title,
|
||||||
|
|
||||||
VERSION/100,
|
VERSION,
|
||||||
VERSION%100,
|
|
||||||
SUBVERSION
|
SUBVERSION
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -480,9 +479,8 @@ 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/100,
|
VERSION,
|
||||||
VERSION%100,
|
|
||||||
SUBVERSION
|
SUBVERSION
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue