mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: #878 Fix typos in comments/code
This commit is contained in:
parent
3bb72a0d06
commit
811b229f52
2 changed files with 8 additions and 6 deletions
|
@ -305,6 +305,8 @@ bool CWinEventEmitter::processMessage (HWND hWnd, uint32 msg, WPARAM wParam, LPA
|
||||||
case WM_INPUTLANGCHANGE:
|
case WM_INPUTLANGCHANGE:
|
||||||
if ( _IMEEventsEnabled )
|
if ( _IMEEventsEnabled )
|
||||||
{
|
{
|
||||||
|
// wParam = Specifies the character set of the new locale.
|
||||||
|
// lParam = Input locale identifier.
|
||||||
server->postEvent( new CEventIME( msg, (uint32)wParam, (uint32)lParam, this ) );
|
server->postEvent( new CEventIME( msg, (uint32)wParam, (uint32)lParam, this ) );
|
||||||
return true; // trap message
|
return true; // trap message
|
||||||
}
|
}
|
||||||
|
|
|
@ -298,7 +298,7 @@ CClientConfig::CClientConfig()
|
||||||
|
|
||||||
Local = false; // Default is Net Mode.
|
Local = false; // Default is Net Mode.
|
||||||
FSHost = ""; // Default Host.
|
FSHost = ""; // Default Host.
|
||||||
|
|
||||||
#if 1 // Yubo hack
|
#if 1 // Yubo hack
|
||||||
// The order is important here, because in a layer, global texture are rendered through this order
|
// The order is important here, because in a layer, global texture are rendered through this order
|
||||||
TexturesInterface.push_back("texture_interfaces_v3");
|
TexturesInterface.push_back("texture_interfaces_v3");
|
||||||
|
@ -306,15 +306,15 @@ CClientConfig::CClientConfig()
|
||||||
TexturesInterface.push_back("new_texture_interfaces_dxtc");
|
TexturesInterface.push_back("new_texture_interfaces_dxtc");
|
||||||
// Added icons by Yubo's Team 2009
|
// Added icons by Yubo's Team 2009
|
||||||
TexturesInterface.push_back("texture_extra");
|
TexturesInterface.push_back("texture_extra");
|
||||||
#else
|
#else
|
||||||
TexturesInterface.push_back("texture_interfaces_v3");
|
TexturesInterface.push_back("texture_interfaces_v3");
|
||||||
TexturesInterfaceDXTC.push_back("texture_interfaces_dxtc");
|
TexturesInterfaceDXTC.push_back("texture_interfaces_dxtc");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
TexturesOutGameInterface.push_back("texture_interfaces_v3_outgame_ui");
|
TexturesOutGameInterface.push_back("texture_interfaces_v3_outgame_ui");
|
||||||
|
|
||||||
TexturesLoginInterface.push_back("texture_interfaces_v3_login");
|
TexturesLoginInterface.push_back("texture_interfaces_v3_login");
|
||||||
|
|
||||||
DisplayAccountButtons = true;
|
DisplayAccountButtons = true;
|
||||||
CreateAccountURL = "https://secure.ryzom.com/signup/from_client.php";
|
CreateAccountURL = "https://secure.ryzom.com/signup/from_client.php";
|
||||||
ConditionsTermsURL = "https://secure.ryzom.com/signup/terms_of_use.php";
|
ConditionsTermsURL = "https://secure.ryzom.com/signup/terms_of_use.php";
|
||||||
|
@ -2034,7 +2034,7 @@ void CClientConfig::init(const string &configFileName)
|
||||||
{
|
{
|
||||||
std::string defaultConfigFileName = "client_default.cfg";
|
std::string defaultConfigFileName = "client_default.cfg";
|
||||||
bool found = false;
|
bool found = false;
|
||||||
|
|
||||||
if (CFile::isExists(defaultConfigFileName)) found = true;
|
if (CFile::isExists(defaultConfigFileName)) found = true;
|
||||||
|
|
||||||
#ifdef RYZOM_ETC_PREFIX
|
#ifdef RYZOM_ETC_PREFIX
|
||||||
|
|
Loading…
Reference in a new issue