From ba3b5765ac64c9bf14ae1d80e255a2c3e711a583 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sat, 10 Jul 2021 22:13:13 +1000 Subject: [PATCH] Qt: Windows compile fix --- src/duckstation-qt/autoupdaterdialog.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/duckstation-qt/autoupdaterdialog.cpp b/src/duckstation-qt/autoupdaterdialog.cpp index cd52d89b6..d6ec64be6 100644 --- a/src/duckstation-qt/autoupdaterdialog.cpp +++ b/src/duckstation-qt/autoupdaterdialog.cpp @@ -36,12 +36,12 @@ Log_SetChannel(AutoUpdaterDialog); #ifdef AUTO_UPDATER_SUPPORTED -static constexpr char* LATEST_TAG_URL = "https://api.github.com/repos/stenzek/duckstation/tags"; -static constexpr char* LATEST_RELEASE_URL = "https://api.github.com/repos/stenzek/duckstation/releases/tags/%s"; -static constexpr char* CHANGES_URL = "https://api.github.com/repos/stenzek/duckstation/compare/%s...%s"; -static constexpr char* UPDATE_ASSET_FILENAME = SCM_RELEASE_ASSET; -static constexpr char* UPDATE_TAGS[] = SCM_RELEASE_TAGS; -static constexpr char* THIS_RELEASE_TAG = SCM_RELEASE_TAG; +static const char* LATEST_TAG_URL = "https://api.github.com/repos/stenzek/duckstation/tags"; +static const char* LATEST_RELEASE_URL = "https://api.github.com/repos/stenzek/duckstation/releases/tags/%s"; +static const char* CHANGES_URL = "https://api.github.com/repos/stenzek/duckstation/compare/%s...%s"; +static const char* UPDATE_ASSET_FILENAME = SCM_RELEASE_ASSET; +static const char* UPDATE_TAGS[] = SCM_RELEASE_TAGS; +static const char* THIS_RELEASE_TAG = SCM_RELEASE_TAG; #endif