diff options
author | 2016-02-18 15:57:34 +0100 | |
---|---|---|
committer | 2016-02-21 03:03:23 +0100 | |
commit | 9a47a870df619656e9092f2f77622e84e640307a (patch) | |
tree | b8640bf79ffb55d0c9ed6fc27bbd4ce16a5e1a2e /src/emu/ui/ui.h | |
parent | dadf8e7d79696996ab3ef840fe99a588ede538fa (diff) |
First take on render API reorg, nw
Diffstat (limited to 'src/emu/ui/ui.h')
-rw-r--r-- | src/emu/ui/ui.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/emu/ui/ui.h b/src/emu/ui/ui.h index 71e21e02b64..8e0f81da9d2 100644 --- a/src/emu/ui/ui.h +++ b/src/emu/ui/ui.h @@ -103,7 +103,8 @@ struct slider_state INT32 defval; /* default value */ INT32 maxval; /* maximum value */ INT32 incval; /* increment value */ - char description[1]; /* textual description */ + bool hidden; /* hidden or not */ + char description[1]; /* textual description */ }; @@ -121,7 +122,7 @@ public: running_machine &machine() const { return m_machine; } bool single_step() const { return m_single_step; } ui_options &options() { return m_ui_options; } - + // setters void set_single_step(bool single_step) { m_single_step = single_step; } |