aboutsummaryrefslogtreecommitdiff
path: root/src/Message.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Message.cpp')
-rw-r--r--src/Message.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Message.cpp b/src/Message.cpp
index 1b42626..ca50821 100644
--- a/src/Message.cpp
+++ b/src/Message.cpp
@@ -9,7 +9,7 @@ namespace dchat
{
Message::Message(User *_user, const std::string &_text, u64 _timestampSeconds, bool plainText) :
user(_user),
- text(sf::String::fromUtf8(_text.begin(), _text.end()), ResourceCache::getFont("fonts/Roboto-Regular.ttf"), 18 * Settings::getScaling(), 0.0f, plainText),
+ text(sf::String::fromUtf8(_text.begin(), _text.end()), ResourceCache::getFont("fonts/Nunito-Regular.ttf"), 18 * Settings::getScaling(), 0.0f, plainText),
timestampSeconds(_timestampSeconds),
type(Type::REGULAR)
{