1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 09:48:42 +00:00

(Wii U/Vita) Use Ozone icons instead of XMB Monochrome

The Ozone icons are small pngs, 46x46, while the XMB Monochrome icons 
are 256x256, which do not look good on low-dpi screens when downscaled 
so extremely.
This commit is contained in:
Ash Logan 2021-07-20 08:59:16 +10:00
parent 8bde566019
commit e9a5625445

View File

@ -304,6 +304,21 @@ void fill_pathname_application_special(char *s,
strlcpy(s, dir_assets, len);
fill_pathname_slash(s, len);
#if defined(WIIU) || defined(VITA)
/* Smaller 46x46 icons look better on low-dpi devices */
/* ozone */
strlcat(s, "ozone", len);
fill_pathname_slash(s, len);
/* png */
strlcat(s, "png", len);
fill_pathname_slash(s, len);
/* Icons path */
strlcat(s, "icons", len);
fill_pathname_slash(s, len);
#else
/* Otherwise, use large 256x256 icons */
/* xmb */
strlcat(s, "xmb", len);
fill_pathname_slash(s, len);
@ -315,6 +330,7 @@ void fill_pathname_application_special(char *s,
/* Icons path */
strlcat(s, "png", len);
fill_pathname_slash(s, len);
#endif
}
#endif
break;