diff --git a/examples/config.example.yml b/examples/config.example.yml index a45a1d485..2b733d067 100644 --- a/examples/config.example.yml +++ b/examples/config.example.yml @@ -88,8 +88,6 @@ filesystem: {} # { roms_folder: 'roms' } For example if your folder structure is # - box3d # 3D box art # - miximage # Mixed image of multiple media # - physical # Disc, cartridge, etc. -# - marquee # Custom marquee -# - logo # Transparent logo # # Added to the screenshots carousel # - screenshot # Screenshot (enabled by default) # - title_screen # Title screen @@ -100,6 +98,9 @@ filesystem: {} # { roms_folder: 'roms' } For example if your folder structure is # - manual (enabled by default) # # Gameplay video # - video # Video (warning: large file size) +# # Other media assets (might be used in the future) +# - marquee # Custom marquee +# - logo # Transparent logo # EmulatorJS per-core options # emulatorjs: diff --git a/frontend/src/components/Settings/UserInterface/Interface.vue b/frontend/src/components/Settings/UserInterface/Interface.vue index 6be2069bd..2ceb189bf 100644 --- a/frontend/src/components/Settings/UserInterface/Interface.vue +++ b/frontend/src/components/Settings/UserInterface/Interface.vue @@ -56,8 +56,7 @@ export type BoxartStyleOption = | "cover_path" | "box3d_path" | "physical_path" - | "miximage_path" - | "marquee_path"; + | "miximage_path"; const boxartStyleRef = useLocalStorage( "settings.boxartStyle", "cover_path", @@ -198,7 +197,6 @@ const boxartStyleOptions = computed(() => [ { title: t("settings.boxart-box3d"), value: "box3d_path" }, { title: t("settings.boxart-physical"), value: "physical_path" }, { title: t("settings.boxart-miximage"), value: "miximage_path" }, - { title: t("settings.boxart-marquee"), value: "marquee_path" }, ]); const setPlatformDrawerGroupBy = (value: string) => {