diff --git a/src/citra_qt/update_checker.cpp b/src/citra_qt/update_checker.cpp index 2cb732353..3686775e4 100644 --- a/src/citra_qt/update_checker.cpp +++ b/src/citra_qt/update_checker.cpp @@ -4,6 +4,7 @@ #include #include +#include #include #include #include "common/logging/log.h" @@ -67,7 +68,7 @@ std::optional UpdateChecker::GetLatestRelease(bool include_prerelea const std::string latest_tag = nlohmann::json::parse(tags_response.value()).at(0).at("name"); const bool latest_tag_has_release = - releases_response.value().find(std::format("\"{}\"", latest_tag)) != + releases_response.value().find(fmt::format("\"{}\"", latest_tag)) != std::string::npos; // If there is a newer tag, but that tag has no associated release, don't prompt the