Move to C++20 for non-MSVC compilers

This commit is contained in:
Tillmann Karras 2022-06-11 14:39:04 +01:00
parent 92c7566646
commit d033d92b05
4 changed files with 4 additions and 4 deletions

View file

@ -291,7 +291,7 @@ void GameFile::DownloadDefaultCover()
}
Common::HttpRequest request;
constexpr char cover_url[] = "https://art.gametdb.com/wii/cover/{}/{}.png";
static constexpr char cover_url[] = "https://art.gametdb.com/wii/cover/{}/{}.png";
const auto response = request.Get(fmt::format(cover_url, region_code, m_gametdb_id));
if (!response)