diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-02 22:04:57 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-02 22:04:57 +0300 |
commit | 0f226f2e42c1a351d52eecdfca89e99f0358ee42 (patch) | |
tree | 9d62987eedf48ba3d7b9f6221003c3d64476b1e4 /src | |
parent | bf9c889b9ce882ff3ddb357c691942e520b1aa2a (diff) | |
download | plus-0f226f2e42c1a351d52eecdfca89e99f0358ee42.tar.gz plus-0f226f2e42c1a351d52eecdfca89e99f0358ee42.tar.bz2 plus-0f226f2e42c1a351d52eecdfca89e99f0358ee42.tar.xz plus-0f226f2e42c1a351d52eecdfca89e99f0358ee42.zip |
fix char sign in online list in tmw like servers.
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/windows/whoisonline.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/windows/whoisonline.h b/src/gui/windows/whoisonline.h index 860eeacda..5a48a8a03 100644 --- a/src/gui/windows/whoisonline.h +++ b/src/gui/windows/whoisonline.h @@ -42,8 +42,8 @@ class OnlinePlayer final { public: OnlinePlayer(const std::string &nick, const unsigned char status, - const char level, const unsigned char gender, - const char version) : + const signed char level, const unsigned char gender, + const signed char version) : mNick(nick), mText(""), mStatus(status), @@ -86,9 +86,9 @@ class OnlinePlayer final unsigned char mStatus; - char mLevel; + signed char mLevel; - char mVersion; + signed char mVersion; unsigned char mGender; |