diff --git a/sphaira/source/ui/menus/appstore.cpp b/sphaira/source/ui/menus/appstore.cpp index 31ce733..9528b2c 100644 --- a/sphaira/source/ui/menus/appstore.cpp +++ b/sphaira/source/ui/menus/appstore.cpp @@ -236,7 +236,7 @@ void DrawIcon(NVGcontext* vg, const LazyImage& l, const LazyImage& d, float x, f bool crop = false; if (iw < w || ih < h) { rounded_image = false; - gfx::drawRect(vg, x, y, w, h, nvgRGB(i.first_pixel[0], i.first_pixel[1], i.first_pixel[2]), rounded ? 15 : 0); + gfx::drawRect(vg, x, y, w, h, nvgRGB(i.first_pixel[0], i.first_pixel[1], i.first_pixel[2]), rounded ? 5 : 0); } if (iw > w || ih > h) { crop = true; @@ -244,7 +244,7 @@ void DrawIcon(NVGcontext* vg, const LazyImage& l, const LazyImage& d, float x, f nvgIntersectScissor(vg, x, y, w, h); } - gfx::drawImage(vg, ix, iy, iw, ih, i.image, rounded_image ? 15 : 0); + gfx::drawImage(vg, ix, iy, iw, ih, i.image, rounded_image ? 5 : 0); if (crop) { nvgRestore(vg); } diff --git a/sphaira/source/ui/menus/homebrew.cpp b/sphaira/source/ui/menus/homebrew.cpp index 6ec7912..cc57c9b 100644 --- a/sphaira/source/ui/menus/homebrew.cpp +++ b/sphaira/source/ui/menus/homebrew.cpp @@ -171,7 +171,7 @@ void Menu::Draw(NVGcontext* vg, Theme* theme) { } const float image_size = 115; - gfx::drawImage(vg, x + 20, y + 20, image_size, image_size, e.image ? e.image : App::GetDefaultImage(), 15); + gfx::drawImage(vg, x + 20, y + 20, image_size, image_size, e.image ? e.image : App::GetDefaultImage(), 5); const auto text_off = 148; const auto text_x = x + text_off; diff --git a/sphaira/source/ui/menus/themezer.cpp b/sphaira/source/ui/menus/themezer.cpp index f5d2a14..04c634c 100644 --- a/sphaira/source/ui/menus/themezer.cpp +++ b/sphaira/source/ui/menus/themezer.cpp @@ -605,7 +605,7 @@ void Menu::Draw(NVGcontext* vg, Theme* theme) { } } - gfx::drawImage(vg, x + xoff, y, 320, 180, image.image ? image.image : App::GetDefaultImage(), 15); + gfx::drawImage(vg, x + xoff, y, 320, 180, image.image ? image.image : App::GetDefaultImage(), 5); } const auto text_x = x + xoff;