diff --git a/bin/Icons/ui/home/circle-left-solid.png b/bin/Icons/ui/home/256/circle-left-solid.png similarity index 100% rename from bin/Icons/ui/home/circle-left-solid.png rename to bin/Icons/ui/home/256/circle-left-solid.png diff --git a/bin/Icons/ui/home/floppy-disk-solid.png b/bin/Icons/ui/home/256/floppy-disk-solid.png similarity index 100% rename from bin/Icons/ui/home/floppy-disk-solid.png rename to bin/Icons/ui/home/256/floppy-disk-solid.png diff --git a/bin/Icons/ui/home/home.png b/bin/Icons/ui/home/256/home.png similarity index 100% rename from bin/Icons/ui/home/home.png rename to bin/Icons/ui/home/256/home.png diff --git a/bin/Icons/ui/home/maximize-solid.png b/bin/Icons/ui/home/256/maximize-solid.png similarity index 100% rename from bin/Icons/ui/home/maximize-solid.png rename to bin/Icons/ui/home/256/maximize-solid.png diff --git a/bin/Icons/ui/home/play-button-arrowhead.png b/bin/Icons/ui/home/256/play-button-arrowhead.png similarity index 100% rename from bin/Icons/ui/home/play-button-arrowhead.png rename to bin/Icons/ui/home/256/play-button-arrowhead.png diff --git a/bin/Icons/ui/home/power-off-solid.png b/bin/Icons/ui/home/256/power-off-solid.png similarity index 100% rename from bin/Icons/ui/home/power-off-solid.png rename to bin/Icons/ui/home/256/power-off-solid.png diff --git a/bin/Icons/ui/home/rotate-left-solid.png b/bin/Icons/ui/home/256/rotate-left-solid.png similarity index 100% rename from bin/Icons/ui/home/rotate-left-solid.png rename to bin/Icons/ui/home/256/rotate-left-solid.png diff --git a/bin/Icons/ui/home/screenshot.png b/bin/Icons/ui/home/256/screenshot.png similarity index 100% rename from bin/Icons/ui/home/screenshot.png rename to bin/Icons/ui/home/256/screenshot.png diff --git a/bin/Icons/ui/home/settings.png b/bin/Icons/ui/home/256/settings.png similarity index 100% rename from bin/Icons/ui/home/settings.png rename to bin/Icons/ui/home/256/settings.png diff --git a/bin/Icons/ui/home/video-camera.png b/bin/Icons/ui/home/256/video-camera.png similarity index 100% rename from bin/Icons/ui/home/video-camera.png rename to bin/Icons/ui/home/256/video-camera.png diff --git a/bin/Icons/ui/home/32/circle-left-solid.png b/bin/Icons/ui/home/32/circle-left-solid.png new file mode 100644 index 0000000000..1acf201d63 Binary files /dev/null and b/bin/Icons/ui/home/32/circle-left-solid.png differ diff --git a/bin/Icons/ui/home/32/floppy-disk-solid.png b/bin/Icons/ui/home/32/floppy-disk-solid.png new file mode 100644 index 0000000000..836c6523c3 Binary files /dev/null and b/bin/Icons/ui/home/32/floppy-disk-solid.png differ diff --git a/bin/Icons/ui/home/32/home.png b/bin/Icons/ui/home/32/home.png new file mode 100644 index 0000000000..2ec05eab24 Binary files /dev/null and b/bin/Icons/ui/home/32/home.png differ diff --git a/bin/Icons/ui/home/32/maximize-solid.png b/bin/Icons/ui/home/32/maximize-solid.png new file mode 100644 index 0000000000..7a0a9e4fb6 Binary files /dev/null and b/bin/Icons/ui/home/32/maximize-solid.png differ diff --git a/bin/Icons/ui/home/32/play-button-arrowhead.png b/bin/Icons/ui/home/32/play-button-arrowhead.png new file mode 100644 index 0000000000..6ce5505f4d Binary files /dev/null and b/bin/Icons/ui/home/32/play-button-arrowhead.png differ diff --git a/bin/Icons/ui/home/32/power-off-solid.png b/bin/Icons/ui/home/32/power-off-solid.png new file mode 100644 index 0000000000..21ebad8e69 Binary files /dev/null and b/bin/Icons/ui/home/32/power-off-solid.png differ diff --git a/bin/Icons/ui/home/32/rotate-left-solid.png b/bin/Icons/ui/home/32/rotate-left-solid.png new file mode 100644 index 0000000000..b466d28a8e Binary files /dev/null and b/bin/Icons/ui/home/32/rotate-left-solid.png differ diff --git a/bin/Icons/ui/home/32/screenshot.png b/bin/Icons/ui/home/32/screenshot.png new file mode 100644 index 0000000000..97255279b4 Binary files /dev/null and b/bin/Icons/ui/home/32/screenshot.png differ diff --git a/bin/Icons/ui/home/32/settings.png b/bin/Icons/ui/home/32/settings.png new file mode 100644 index 0000000000..eeaeceef7d Binary files /dev/null and b/bin/Icons/ui/home/32/settings.png differ diff --git a/bin/Icons/ui/home/32/video-camera.png b/bin/Icons/ui/home/32/video-camera.png new file mode 100644 index 0000000000..d8fa8dfaaf Binary files /dev/null and b/bin/Icons/ui/home/32/video-camera.png differ diff --git a/rpcs3/Emu/RSX/Overlays/HomeMenu/overlay_home_icons.cpp b/rpcs3/Emu/RSX/Overlays/HomeMenu/overlay_home_icons.cpp index a0edc05e9b..51204e540e 100644 --- a/rpcs3/Emu/RSX/Overlays/HomeMenu/overlay_home_icons.cpp +++ b/rpcs3/Emu/RSX/Overlays/HomeMenu/overlay_home_icons.cpp @@ -40,12 +40,7 @@ namespace rsx::overlays::home_menu void load_icon(fa_icon icon) { - if (!g_icons_cache.empty()) - { - return; - } - - const std::string image_path = fmt::format("%s/Icons/ui/home/%s", fs::get_config_dir(), fa_icon_to_filename(icon)); + const std::string image_path = fmt::format("%s/Icons/ui/home/32/%s", fs::get_config_dir(), fa_icon_to_filename(icon)); g_icons_cache[icon] = std::make_unique(image_path); }