From b98ccb927e44f563487ef28bf77e40f4bdcccdc5 Mon Sep 17 00:00:00 2001 From: ITotalJustice <47043333+ITotalJustice@users.noreply.github.com> Date: Sun, 11 May 2025 20:19:43 +0100 Subject: [PATCH] fix appstore status icons no longer being rounded (bug added in e279a70) --- sphaira/source/ui/menus/appstore.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sphaira/source/ui/menus/appstore.cpp b/sphaira/source/ui/menus/appstore.cpp index d6679cb..c55b533 100644 --- a/sphaira/source/ui/menus/appstore.cpp +++ b/sphaira/source/ui/menus/appstore.cpp @@ -1071,16 +1071,16 @@ void Menu::Draw(NVGcontext* vg, Theme* theme) { float i_size = 22; switch (e.status) { case EntryStatus::Get: - gfx::drawImage(vg, x + w - 30.f, y + 110, i_size, i_size, m_get.image, 0); + gfx::drawImage(vg, x + w - 30.f, y + 110, i_size, i_size, m_get.image, 20); break; case EntryStatus::Installed: - gfx::drawImage(vg, x + w - 30.f, y + 110, i_size, i_size, m_installed.image, 0); + gfx::drawImage(vg, x + w - 30.f, y + 110, i_size, i_size, m_installed.image, 20); break; case EntryStatus::Local: - gfx::drawImage(vg, x + w - 30.f, y + 110, i_size, i_size, m_local.image, 0); + gfx::drawImage(vg, x + w - 30.f, y + 110, i_size, i_size, m_local.image, 20); break; case EntryStatus::Update: - gfx::drawImage(vg, x + w - 30.f, y + 110, i_size, i_size, m_update.image, 0); + gfx::drawImage(vg, x + w - 30.f, y + 110, i_size, i_size, m_update.image, 20); break; } });