diff options
Diffstat (limited to 'src/emu/ui/ui.h')
-rw-r--r-- | src/emu/ui/ui.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/emu/ui/ui.h b/src/emu/ui/ui.h index 5a07a0800b5..3da9bfb1bab 100644 --- a/src/emu/ui/ui.h +++ b/src/emu/ui/ui.h @@ -171,6 +171,10 @@ public: // other void process_natural_keyboard(); + void set_show_timecode_counter(bool value) { m_show_timecode_counter = value; m_show_timecode_total = true; } + bool show_timecode_counter(); + bool show_timecode_total(); + // word wrap void wrap_text(render_container *container, const char *origs, float x, float y, float origwrapwidth, int &totallines, std::vector<int> &xstart, std::vector<int> &xend, float text_size = 1.0f); @@ -195,6 +199,8 @@ private: std::unique_ptr<UINT8[]> m_non_char_keys_down; render_texture * m_mouse_arrow_texture; bool m_mouse_show; + bool m_show_timecode_counter; + bool m_show_timecode_total; bool m_load_save_hold; ui_options m_ui_options; |