Compare commits

..

9 commits

Author SHA1 Message Date
726fe8cf09 repo name typo
Some checks failed
eden-license / license-header (pull_request) Failing after 30s
2025-10-01 22:04:06 +02:00
2ab88246a0 rename more macros 2025-10-01 22:04:06 +02:00
66e11f28d7 windowing and input stuff 2025-10-01 22:04:06 +02:00
a24d9ad40d gamepad and joystick apis 2025-10-01 22:04:06 +02:00
26ccc14d5a new audio api changes 2025-10-01 22:04:06 +02:00
e41b50ada5 rename some headers 2025-10-01 22:04:06 +02:00
2634d04a49 rename all symbols 2025-10-01 22:04:06 +02:00
b7541c3564 switch to SDL3 dep 2025-10-01 22:04:06 +02:00
61adc85c4b
[ci] Minor change to fix building (#2644)
MSVC did not like that one of our variables was a constexpr since it was defined in the externals as a constexpr. Changed to const auto like the rest to ensure it built properly.

Reviewed-on: #2644
Reviewed-by: MaranBr <maranbr@eden-emu.dev>
Reviewed-by: Maufeat <sahyno1996@gmail.com>
Co-authored-by: Shinmegumi <shinmegumi@eden-emu.dev>
Co-committed-by: Shinmegumi <shinmegumi@eden-emu.dev>
2025-10-01 21:09:27 +02:00

View file

@ -58,7 +58,7 @@ std::optional<std::string> UpdateChecker::GetResponse(std::string url, std::stri
std::optional<std::string> UpdateChecker::GetLatestRelease(bool include_prereleases)
{
constexpr auto update_check_url = std::string{Common::g_build_auto_update_api};
const auto update_check_url = std::string{Common::g_build_auto_update_api};
std::string update_check_path = fmt::format("/repos/{}", std::string{Common::g_build_auto_update_repo});
try {
if (include_prereleases) { // This can return either a prerelease or a stable release,