summaryrefslogtreecommitdiffstats
path: root/src/frontend/mame/ui/utils.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-08-10 15:03:52 +1000
committer Vas Crabb <vas@vastheman.com>2017-08-10 15:03:52 +1000
commit54ff6183fce149505a62349edd9e73b19baedbb7 (patch)
tree613cc2e3e8876ea3c24b20d85ed502209a489069 /src/frontend/mame/ui/utils.h
parent80b2ca6088281babff558b36a98d329aa60aa8ed (diff)
ui: improve layout of art/info box, support mousewheel scroll in info
text, allow home/end to jump to beginning/end of filter list, consolidate logic (nw) A number of vestigial constants have been removed. Some hacky input types that were just used as a trick to pass information between menu functions are gone. MACHINE_NO_STANDALONE is a relic from when drivers were used as arbitrary ROM containers, and in a world of first-class devices this is no longer necessary.
Diffstat (limited to 'src/frontend/mame/ui/utils.h')
-rw-r--r--src/frontend/mame/ui/utils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/utils.h b/src/frontend/mame/ui/utils.h
index 6ccc4394857..67685bcfdba 100644
--- a/src/frontend/mame/ui/utils.h
+++ b/src/frontend/mame/ui/utils.h
@@ -276,7 +276,8 @@ enum
HOVER_SW_FILTER_FIRST,
HOVER_SW_FILTER_LAST = (HOVER_SW_FILTER_FIRST) + ui::software_filter::COUNT,
HOVER_RP_FIRST,
- HOVER_RP_LAST = (HOVER_RP_FIRST) + 1 + RP_LAST
+ HOVER_RP_LAST = (HOVER_RP_FIRST) + 1 + RP_LAST,
+ HOVER_INFO_TEXT
};
// FIXME: this stuff shouldn't all be globals