aboutsummaryrefslogtreecommitdiff
path: root/src/discord_rich_presence.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/discord_rich_presence.cpp')
-rw-r--r--src/discord_rich_presence.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/discord_rich_presence.cpp b/src/discord_rich_presence.cpp
index aea07e5e..73066557 100644
--- a/src/discord_rich_presence.cpp
+++ b/src/discord_rich_presence.cpp
@@ -63,8 +63,8 @@ void Discord::state_character(std::string name)
QString(name.c_str()).toLower().replace(' ', '_').toStdString();
auto name_friendly = QString(name.c_str()).replace('_', ' ').toStdString();
const std::string playing_as = "Playing as " + name_friendly;
- qDebug() << "Discord RPC: Setting character state (" << playing_as.c_str()
- << ")";
+ qDebug().nospace() << "Discord RPC: Setting character state (\"" << playing_as.c_str()
+ << "\")";
DiscordRichPresence presence;
std::memset(&presence, 0, sizeof(presence));