diff options
author | 2021-10-20 02:03:43 +1100 | |
---|---|---|
committer | 2021-10-20 02:03:43 +1100 | |
commit | 0a9ea09a9a328884b61ce57c2e3b51705da50467 (patch) | |
tree | 98153d6f2244b0053d9c1894b5c71277fb18522d /src/frontend/mame/ui/selmenu.cpp | |
parent | 9e7779bdd5c17a847ed4c06a9b7e68a39ec6576b (diff) |
Tie up a few loose ends:
debugger: Octal cheats for octal address spaces.
frontend: Pass events for automatically generated menu items to the
plugin - they will have index zero.
frontend: Don't try calling the data plugin from the main menu if the
system isn't starting yet - doing so will prevent the data plugin from
loading at all.
Diffstat (limited to 'src/frontend/mame/ui/selmenu.cpp')
-rw-r--r-- | src/frontend/mame/ui/selmenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/selmenu.cpp b/src/frontend/mame/ui/selmenu.cpp index 303334de17b..c5718bdc564 100644 --- a/src/frontend/mame/ui/selmenu.cpp +++ b/src/frontend/mame/ui/selmenu.cpp @@ -856,7 +856,7 @@ void menu_select_launch::inkey_dats() ui_system_info const *system; get_selection(software, system); if (software && !software->startempty) - menu::stack_push<menu_dats_view>(ui(), container(), software); + menu::stack_push<menu_dats_view>(ui(), container(), *software); else if (system) menu::stack_push<menu_dats_view>(ui(), container(), system); } |