make progress popup a little nicer, store json timeout is now 1h, initial work on storing update changelog

also removed the ability to cancel an update whilst unzipping the files, as this would result
in a corrupted sphaira.nro install, which we don't want.
This commit is contained in:
ITotalJustice
2024-12-21 19:44:43 +00:00
parent 4a058d3caf
commit 10f079e881
4 changed files with 23 additions and 12 deletions

View File

@@ -51,8 +51,8 @@ OptionBox::OptionBox(const std::string& message, const Option& a, const Option&
m_pos.w = 770.f;
m_pos.h = 295.f;
m_pos.x = (1280.f / 2.f) - (m_pos.w / 2.f);
m_pos.y = (720.f / 2.f) - (m_pos.h / 2.f);
m_pos.x = (SCREEN_WIDTH / 2.f) - (m_pos.w / 2.f);
m_pos.y = (SCREEN_HEIGHT / 2.f) - (m_pos.h / 2.f);
auto box = m_pos;
box.w /= 2.f;