fix sphaira not detecting latest update as we went from 0.9 to 0.10.

This commit is contained in:
ITotalJustice
2025-05-19 16:23:45 +01:00
parent 74fddecebc
commit 1000b9c8ec

View File

@@ -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;
}