From 1000b9c8ec0cdcf7bbca2756f6e7ff7cf9f1c3b2 Mon Sep 17 00:00:00 2001 From: ITotalJustice <47043333+ITotalJustice@users.noreply.github.com> Date: Mon, 19 May 2025 16:23:45 +0100 Subject: [PATCH] fix sphaira not detecting latest update as we went from 0.9 to 0.10. --- sphaira/source/ui/menus/main_menu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphaira/source/ui/menus/main_menu.cpp b/sphaira/source/ui/menus/main_menu.cpp index 9ccfb3e..1ac2003 100644 --- a/sphaira/source/ui/menus/main_menu.cpp +++ b/sphaira/source/ui/menus/main_menu.cpp @@ -212,7 +212,7 @@ MainMenu::MainMenu() { const auto version = yyjson_get_str(tag_key); R_UNLESS(version, false); - if (std::strcmp(APP_VERSION, version) >= 0) { + if (!std::strcmp(APP_VERSION, version)) { m_update_state = UpdateState::None; return true; }