diff options
author | 2016-09-02 18:04:38 -0400 | |
---|---|---|
committer | 2016-09-02 18:04:38 -0400 | |
commit | 0a8652e03f82e8bda55dcea445ce88b1c5038d1c (patch) | |
tree | 9ab289431cbee5b705eea93efa7ea01cb6cf78be /src/frontend/mame/ui/ui.h | |
parent | c357acd3dfe1c2a508df2974d9dd135a7e5cb8e9 (diff) |
More new features for UI graphics viewer
- Mouse over GFX tiles to reveal pixel values
- Mouse over tilemap to reveal tile codes and colors
- UI tilemap scrolling controls are now orientation-relative
- Make mouse visible everywhere in UI graphics viewer by treating it like a menu
- Add all necessary getters to tilemap_t and a few more (nw)
- Add comment about role of decoder in tilemap creation (nw)
Diffstat (limited to 'src/frontend/mame/ui/ui.h')
-rw-r--r-- | src/frontend/mame/ui/ui.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/ui.h b/src/frontend/mame/ui/ui.h index 3baa5db61c2..03f32496e1a 100644 --- a/src/frontend/mame/ui/ui.h +++ b/src/frontend/mame/ui/ui.h @@ -135,7 +135,8 @@ enum class ui_callback_type { GENERAL, MODAL, - MENU + MENU, + VIEWER }; // ======================> mame_ui_manager |