fix hbmenu not being updated due to faulty string compare, bump version 0.10.1 -> 0.10.2

This commit is contained in:
ITotalJustice
2025-05-19 20:34:22 +01:00
parent 041bb2bbe5
commit cf192fca85
4 changed files with 18 additions and 4 deletions

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)) {
if (!App::IsVersionNewer(APP_VERSION, version)) {
m_update_state = UpdateState::None;
return true;
}