From f98d003e354a1792117b7cbc771d1dd91475a156 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 18 Mar 2011 17:48:29 +0200 Subject: Fix most old style cast except manaserv and libxml2 defines. --- src/client.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client.cpp') diff --git a/src/client.cpp b/src/client.cpp index 8b7eea4e9..76a53fdfd 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -496,8 +496,8 @@ Client::Client(const Options &options): if (mCurrentServer.port == 0) { - mCurrentServer.port = (short) branding.getValue("defaultPort", - DEFAULT_PORT); + mCurrentServer.port = static_cast(branding.getValue( + "defaultPort", DEFAULT_PORT)); mCurrentServer.type = ServerInfo::parseType( branding.getValue("defaultServerType", "tmwathena")); } @@ -516,7 +516,7 @@ Client::Client(const Options &options): mLogicCounterId = SDL_AddTimer(MILLISECONDS_IN_A_TICK, nextTick, NULL); mSecondsCounterId = SDL_AddTimer(1000, nextSecond, NULL); - const int fpsLimit = (int) config.getIntValue("fpslimit"); + const int fpsLimit = config.getIntValue("fpslimit"); mLimitFps = fpsLimit > 0; // Initialize frame limiting -- cgit v1.2.3-60-g2f50