Merge pull request #12678 from QuarkTheAwesome/ozone-icons

(Ozone) Use Ozone icons instead of XMB Monochrome
This commit is contained in:
Autechre 2021-07-20 14:59:08 +02:00 committed by GitHub
commit d4d9129ad4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -304,6 +304,21 @@ void fill_pathname_application_special(char *s,
strlcpy(s, dir_assets, len); strlcpy(s, dir_assets, len);
fill_pathname_slash(s, 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 */ /* xmb */
strlcat(s, "xmb", len); strlcat(s, "xmb", len);
fill_pathname_slash(s, len); fill_pathname_slash(s, len);
@ -315,6 +330,7 @@ void fill_pathname_application_special(char *s,
/* Icons path */ /* Icons path */
strlcat(s, "png", len); strlcat(s, "png", len);
fill_pathname_slash(s, len); fill_pathname_slash(s, len);
#endif
} }
#endif #endif
break; break;