This commit is contained in:
Georges-Antoine Assi
2025-10-30 20:33:36 -04:00
parent 0424e4450f
commit f91596fcea
2 changed files with 4 additions and 5 deletions

View File

@@ -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:

View File

@@ -56,8 +56,7 @@ export type BoxartStyleOption =
| "cover_path"
| "box3d_path"
| "physical_path"
| "miximage_path"
| "marquee_path";
| "miximage_path";
const boxartStyleRef = useLocalStorage<BoxartStyleOption>(
"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) => {