summaryrefslogtreecommitdiff
path: root/src/yuzu/discord_impl.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-02-21 18:57:55 -0500
committerGitHub <noreply@github.com>2023-02-21 18:57:55 -0500
commitba05301e1b91086d9286bd6cef99423ef409f0e6 (patch)
treefff7e208e4fcdf0d956660e98696f89d13a6bf59 /src/yuzu/discord_impl.cpp
parent5a657488e14cb077f7c12392477f21c46957b18f (diff)
parent83afc124759673af58435b8791dd357bf751642c (diff)
Merge pull request #9841 from abouvier/httplib-update
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 {