summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/selsoft.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-11-23 09:41:14 +1100
committer Vas Crabb <vas@vastheman.com>2016-11-23 09:41:33 +1100
commit32c256eccc827d2708c6c270c5c59df4b8a6ae01 (patch)
treed604fb4f36efeb9a68dc395e0f7a1ae48b3d0e21 /src/frontend/mame/ui/selsoft.cpp
parentf4871c88cb9d09ceb6689d8d2d3b10ddb133d225 (diff)
Encapsulate a bit more of the menu base class to control when layout changes can happen
Diffstat (limited to 'src/frontend/mame/ui/selsoft.cpp')
-rw-r--r--src/frontend/mame/ui/selsoft.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/mame/ui/selsoft.cpp b/src/frontend/mame/ui/selsoft.cpp
index 8a1768afae8..899605f04a0 100644
--- a/src/frontend/mame/ui/selsoft.cpp
+++ b/src/frontend/mame/ui/selsoft.cpp
@@ -417,7 +417,7 @@ void menu_select_software::handle()
// populate
//-------------------------------------------------
-void menu_select_software::populate()
+void menu_select_software::populate(float &customtop, float &custombottom)
{
uint32_t flags_ui = FLAG_LEFT_ARROW | FLAG_RIGHT_ARROW;
m_has_empty_start = true;
@@ -1265,7 +1265,7 @@ software_parts::~software_parts()
// populate
//-------------------------------------------------
-void software_parts::populate()
+void software_parts::populate(float &customtop, float &custombottom)
{
for (auto & elem : m_parts)
item_append(elem.first, elem.second, 0, (void *)&elem);
@@ -1363,7 +1363,7 @@ bios_selection::~bios_selection()
// populate
//-------------------------------------------------
-void bios_selection::populate()
+void bios_selection::populate(float &customtop, float &custombottom)
{
for (auto & elem : m_bios)
item_append(elem.first, "", 0, (void *)&elem.first);