Version 10.7.1

This commit is contained in:
def 2017-07-25 19:09:05 +02:00
parent a9d3f45b25
commit 379f060126
2 changed files with 5 additions and 5 deletions

View file

@ -433,14 +433,14 @@ void CMenus::RenderSettingsTee(CUIRect MainView)
Dummy.HSplitTop(20.0f, &DummyLabel, &Dummy);
if(DoButton_CheckBox(&g_Config.m_ClKittySkins, Localize("Kitty skins"), g_Config.m_ClKittySkins, &DummyLabel))
if(DoButton_CheckBox(&g_Config.m_ClKittySkins, Localize("Kitty skins (DDCat)"), g_Config.m_ClKittySkins, &DummyLabel))
{
g_Config.m_ClKittySkins ^= 1;
}
Dummy.HSplitTop(20.0f, &DummyLabel, &Dummy);
if(DoButton_CheckBox(&g_Config.m_ClFatSkins, Localize("Fat skins"), g_Config.m_ClFatSkins, &DummyLabel))
if(DoButton_CheckBox(&g_Config.m_ClFatSkins, Localize("Fat skins (DDFat)"), g_Config.m_ClFatSkins, &DummyLabel))
{
g_Config.m_ClFatSkins ^= 1;
}

View file

@ -3,8 +3,8 @@
#ifndef GAME_VERSION_H
#define GAME_VERSION_H
#include "generated/nethash.cpp"
#define GAME_VERSION "0.6.3, 10.7"
#define GAME_VERSION "0.6.3, 10.7.1"
#define GAME_NETVERSION "0.6 626fce9a778df4d4"
static const char GAME_RELEASE_VERSION[8] = "10.7";
#define CLIENT_VERSIONNR 10070
static const char GAME_RELEASE_VERSION[8] = "10.7.1";
#define CLIENT_VERSIONNR 10071
#endif