overlays: Add some more icons
BIN
bin/Icons/ui/home/256/bug-solid.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
bin/Icons/ui/home/256/display-solid.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
bin/Icons/ui/home/256/gamepad-solid.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
bin/Icons/ui/home/256/gauge-solid.png
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
BIN
bin/Icons/ui/home/256/headphones-solid.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
BIN
bin/Icons/ui/home/256/sliders-solid.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
bin/Icons/ui/home/32/bug-solid.png
Normal file
|
After Width: | Height: | Size: 618 B |
BIN
bin/Icons/ui/home/32/display-solid.png
Normal file
|
After Width: | Height: | Size: 360 B |
BIN
bin/Icons/ui/home/32/gamepad-solid.png
Normal file
|
After Width: | Height: | Size: 472 B |
BIN
bin/Icons/ui/home/32/gauge-solid.png
Normal file
|
After Width: | Height: | Size: 473 B |
BIN
bin/Icons/ui/home/32/headphones-solid.png
Normal file
|
After Width: | Height: | Size: 489 B |
BIN
bin/Icons/ui/home/32/sliders-solid.png
Normal file
|
After Width: | Height: | Size: 332 B |
|
|
@ -41,6 +41,18 @@ namespace rsx::overlays::home_menu
|
|||
return "user-group-solid.png";
|
||||
case fa_icon::trophy:
|
||||
return "trophy-solid.png";
|
||||
case fa_icon::audio:
|
||||
return "headphones-solid.png";
|
||||
case fa_icon::video:
|
||||
return "display-solid.png";
|
||||
case fa_icon::gamepad:
|
||||
return "gamepad-solid.png";
|
||||
case fa_icon::settings_sliders:
|
||||
return "sliders-solid.png";
|
||||
case fa_icon::settings_gauge:
|
||||
return "gauge-solid.png";
|
||||
case fa_icon::bug:
|
||||
return "bug-solid.png";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -19,7 +19,13 @@ namespace rsx::overlays::home_menu
|
|||
screenshot,
|
||||
video_camera,
|
||||
trophy,
|
||||
friends
|
||||
friends,
|
||||
audio,
|
||||
video,
|
||||
gamepad,
|
||||
settings_sliders,
|
||||
settings_gauge,
|
||||
bug,
|
||||
};
|
||||
|
||||
const image_info* get_icon(fa_icon icon);
|
||||
|
|
|
|||