diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-30 11:56:59 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-08-30 11:56:59 +0200 |
commit | f5fe723b2a704da475b24a594fd59f448cf133a3 (patch) | |
tree | 6965c6df44d2b042ca62034119466127fd01b5da /source/cChatColor.cpp | |
parent | cProtocol handles the initial handshake up to player login (diff) | |
download | cuberite-f5fe723b2a704da475b24a594fd59f448cf133a3.tar cuberite-f5fe723b2a704da475b24a594fd59f448cf133a3.tar.gz cuberite-f5fe723b2a704da475b24a594fd59f448cf133a3.tar.bz2 cuberite-f5fe723b2a704da475b24a594fd59f448cf133a3.tar.lz cuberite-f5fe723b2a704da475b24a594fd59f448cf133a3.tar.xz cuberite-f5fe723b2a704da475b24a594fd59f448cf133a3.tar.zst cuberite-f5fe723b2a704da475b24a594fd59f448cf133a3.zip |
Diffstat (limited to 'source/cChatColor.cpp')
-rw-r--r-- | source/cChatColor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cChatColor.cpp b/source/cChatColor.cpp index cad04676e..262130897 100644 --- a/source/cChatColor.cpp +++ b/source/cChatColor.cpp @@ -3,8 +3,8 @@ #include "cChatColor.h" -const std::string cChatColor::Color = "\xc2\xa7"; // or in other words: "§" -const std::string cChatColor::Delimiter = "\xa7"; +const std::string cChatColor::Color = "\xc2\xa7"; // or in other words: "§" in UTF-8 +const std::string cChatColor::Delimiter = "\xc2\xa7"; // or in other words: "§" in UTF-8 const std::string cChatColor::Black = cChatColor::Color + "0"; const std::string cChatColor::Navy = cChatColor::Color + "1"; const std::string cChatColor::Green = cChatColor::Color + "2"; |