summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emuopts.h
diff options
context:
space:
mode:
author Antonio Giner <calamity15khz@gmail.com>2016-08-23 23:25:26 +0200
committer Antonio Giner <calamity15khz@gmail.com>2016-08-27 22:12:29 +0200
commita976bc2a2ab37bd98b14a94e95307558bc1647f8 (patch)
tree92923fe42feef7c72be9e4d2f10ee254ed222a8b /src/emu/emuopts.h
parentb65c003cbed4442a8ba457de09d8698a8d8f5f1a (diff)
Implement new option -unevenstretchy (complementary to -unevenstretchx)
Diffstat (limited to 'src/emu/emuopts.h')
-rw-r--r--src/emu/emuopts.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/emuopts.h b/src/emu/emuopts.h
index 1e7829690c0..ed9cbc8851c 100644
--- a/src/emu/emuopts.h
+++ b/src/emu/emuopts.h
@@ -79,6 +79,7 @@
#define OPTION_KEEPASPECT "keepaspect"
#define OPTION_UNEVENSTRETCH "unevenstretch"
#define OPTION_UNEVENSTRETCHX "unevenstretchx"
+#define OPTION_UNEVENSTRETCHY "unevenstretchy"
#define OPTION_INTOVERSCAN "intoverscan"
#define OPTION_INTSCALEX "intscalex"
#define OPTION_INTSCALEY "intscaley"
@@ -265,6 +266,7 @@ public:
bool keep_aspect() const { return bool_value(OPTION_KEEPASPECT); }
bool uneven_stretch() const { return bool_value(OPTION_UNEVENSTRETCH); }
bool uneven_stretch_x() const { return bool_value(OPTION_UNEVENSTRETCHX); }
+ bool uneven_stretch_y() const { return bool_value(OPTION_UNEVENSTRETCHY); }
bool int_overscan() const { return bool_value(OPTION_INTOVERSCAN); }
int int_scale_x() const { return int_value(OPTION_INTSCALEX); }
int int_scale_y() const { return int_value(OPTION_INTSCALEY); }