summaryrefslogtreecommitdiff
path: root/src/yuzu/discord_impl.cpp
diff options
context:
space:
mode:
authorAlexandre Bouvier <contact@amb.tf>2023-02-18 23:24:04 +0100
committerAlexandre Bouvier <contact@amb.tf>2023-02-21 20:55:37 +0100
commit83afc124759673af58435b8791dd357bf751642c (patch)
tree69c862d2fea91b6fd4eec0eb79686fe74460a524 /src/yuzu/discord_impl.cpp
parent89221ca7d549492dd66286214571021b21215c8a (diff)
externals: Update cpp-httplib to latest
Diffstat (limited to 'src/yuzu/discord_impl.cpp')
-rw-r--r--src/yuzu/discord_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/discord_impl.cpp b/src/yuzu/discord_impl.cpp
index de0c307d4..978ffef33 100644
--- a/src/yuzu/discord_impl.cpp
+++ b/src/yuzu/discord_impl.cpp
@@ -76,7 +76,7 @@ void DiscordImpl::Update() {
// New Check for game cover
httplib::Client cli(game_cover_url);
- if (auto res = cli.Head(fmt::format("/images/game/boxart/{}.png", icon_name).c_str())) {
+ if (auto res = cli.Head(fmt::format("/images/game/boxart/{}.png", icon_name))) {
if (res->status == 200) {
game_cover_url += fmt::format("/images/game/boxart/{}.png", icon_name);
} else {