diff options
Diffstat (limited to 'src/emu/emuopts.h')
-rw-r--r-- | src/emu/emuopts.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/emu/emuopts.h b/src/emu/emuopts.h index b1869c82c16..c16e9c24567 100644 --- a/src/emu/emuopts.h +++ b/src/emu/emuopts.h @@ -97,11 +97,6 @@ // core artwork options #define OPTION_ARTWORK_CROP "artwork_crop" -#define OPTION_USE_BACKDROPS "use_backdrops" -#define OPTION_USE_OVERLAYS "use_overlays" -#define OPTION_USE_BEZELS "use_bezels" -#define OPTION_USE_CPANELS "use_cpanels" -#define OPTION_USE_MARQUEES "use_marquees" #define OPTION_FALLBACK_ARTWORK "fallback_artwork" #define OPTION_OVERRIDE_ARTWORK "override_artwork" @@ -379,11 +374,6 @@ public: // core artwork options bool artwork_crop() const { return bool_value(OPTION_ARTWORK_CROP); } - bool use_backdrops() const { return bool_value(OPTION_USE_BACKDROPS); } - bool use_overlays() const { return bool_value(OPTION_USE_OVERLAYS); } - bool use_bezels() const { return bool_value(OPTION_USE_BEZELS); } - bool use_cpanels() const { return bool_value(OPTION_USE_CPANELS); } - bool use_marquees() const { return bool_value(OPTION_USE_MARQUEES); } const char *fallback_artwork() const { return value(OPTION_FALLBACK_ARTWORK); } const char *override_artwork() const { return value(OPTION_OVERRIDE_ARTWORK); } |