mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
Minor fixes
This commit is contained in:
parent
9fcb3eba63
commit
5f60491002
|
@ -62,7 +62,7 @@ print("adding files")
|
|||
#shutil.copy("readme.txt", package_dir)
|
||||
shutil.copy("license.txt", package_dir)
|
||||
shutil.copy("storage.cfg", package_dir)
|
||||
shutil.copy("example.cfg", package_dir)
|
||||
shutil.copy("autoexec.cfg", package_dir)
|
||||
|
||||
# DDRace
|
||||
shutil.copy("announcement.txt", package_dir)
|
||||
|
|
|
@ -277,7 +277,7 @@ void CGameClient::OnInit()
|
|||
char aBuf[256];
|
||||
if (g_Config.m_hcAutoUpdate)
|
||||
{
|
||||
str_format(aBuf, sizeof(aBuf), "Checking updates, please wait....");
|
||||
str_format(aBuf, sizeof(aBuf), "Checking for updates");
|
||||
g_GameClient.m_pMenus->RenderUpdating(aBuf);
|
||||
AutoUpdate()->CheckUpdates(m_pMenus);
|
||||
if (AutoUpdate()->Updated())
|
||||
|
@ -289,13 +289,13 @@ void CGameClient::OnInit()
|
|||
}
|
||||
else
|
||||
{
|
||||
str_format(aBuf, sizeof(aBuf), "H-Client updated successfully :)");
|
||||
str_format(aBuf, sizeof(aBuf), "DDNet Client updated successfully");
|
||||
g_GameClient.m_pMenus->RenderUpdating(aBuf);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
str_format(aBuf, sizeof(aBuf), "Not need be update :)");
|
||||
str_format(aBuf, sizeof(aBuf), "No updates available");
|
||||
g_GameClient.m_pMenus->RenderUpdating(aBuf);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue