mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-13 00:24:17 +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,
|
||||
"port=%d&"
|
||||
"title=%s&"
|
||||
"version=%d.%d.%d",
|
||||
"version=%d.%d",
|
||||
|
||||
current_port,
|
||||
|
||||
title,
|
||||
|
||||
VERSION/100,
|
||||
VERSION%100,
|
||||
VERSION,
|
||||
SUBVERSION
|
||||
);
|
||||
|
||||
|
@ -480,9 +479,8 @@ HMS_fetch_servers (msg_server_t *list, int room_number, int query_id)
|
|||
doing_shit = 1;
|
||||
|
||||
snprintf(local_version, sizeof local_version,
|
||||
"%d.%d.%d",
|
||||
VERSION/100,
|
||||
VERSION%100,
|
||||
"%d.%d",
|
||||
VERSION,
|
||||
SUBVERSION
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue