Minor fixes

This commit is contained in:
def 2014-04-28 00:13:15 +02:00
parent 9fcb3eba63
commit 5f60491002
2 changed files with 4 additions and 4 deletions

View file

@ -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)

View file

@ -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);
}
}