summaryrefslogtreecommitdiffstats
path: root/docs/release/src/osd/winui/treeview.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2020-12-30 12:53:32 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2020-12-30 12:53:32 +1100
commitca19c18de2e943f1a7947e8167533b92cb5259a7 (patch)
tree690198469b804e8ce2eb9791cf17ff9f655cf1e6 /docs/release/src/osd/winui/treeview.cpp
parent6c75c1ae77eec4c7350aed7e824fe19d6b38e8bc (diff)
Release files for 0.227tag227
Diffstat (limited to 'docs/release/src/osd/winui/treeview.cpp')
-rw-r--r--docs/release/src/osd/winui/treeview.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/release/src/osd/winui/treeview.cpp b/docs/release/src/osd/winui/treeview.cpp
index 4de03bc51d4..9076aeb85d3 100644
--- a/docs/release/src/osd/winui/treeview.cpp
+++ b/docs/release/src/osd/winui/treeview.cpp
@@ -936,7 +936,7 @@ void CreateCPUFolders(int parent_index)
machine_config config(driver_list::driver(i),MameUIGlobal());
// enumerate through all devices
- for (device_execute_interface &device : execute_interface_iterator(config.root_device()))
+ for (device_execute_interface &device : execute_interface_enumerator(config.root_device()))
{
// get the name
std::string dev_name = device.device().name();
@@ -992,7 +992,7 @@ void CreateSoundFolders(int parent_index)
// enumerate through all devices
- for (device_sound_interface &device : sound_interface_iterator(config.root_device()))
+ for (device_sound_interface &device : sound_interface_enumerator(config.root_device()))
{
// get the name
std::string dev_name = device.device().name();
@@ -1217,7 +1217,7 @@ void CreateDumpingFolders(int parent_index)
/* Allocate machine config */
machine_config config(*gamedrv,MameUIGlobal());
- for (device_t &device : device_iterator(config.root_device()))
+ for (device_t &device : device_enumerator(config.root_device()))
{
for (const rom_entry *region = rom_first_region(device); region; region = rom_next_region(region))
{
@@ -1321,13 +1321,13 @@ void CreateResolutionFolders(int parent_index)
sprintf(Screen, "Vector");
else
{
- screen_device_iterator iter(config.root_device());
+ screen_device_enumerator iter(config.root_device());
const screen_device *screen = iter.first();
if (screen == NULL)
strcpy(Screen, "Screenless Game");
else
{
- for (screen_device &screen : screen_device_iterator(config.root_device()))
+ for (screen_device &screen : screen_device_enumerator(config.root_device()))
{
const rectangle &visarea = screen.visible_area();
@@ -1390,13 +1390,13 @@ void CreateFPSFolders(int parent_index)
sprintf(Screen, "Vector");
else
{
- screen_device_iterator iter(config.root_device());
+ screen_device_enumerator iter(config.root_device());
const screen_device *screen = iter.first();
if (screen == NULL)
strcpy(Screen, "Screenless Game");
else
{
- for (screen_device &screen : screen_device_iterator(config.root_device()))
+ for (screen_device &screen : screen_device_enumerator(config.root_device()))
{
sprintf(Screen,"%f Hz", ATTOSECONDS_TO_HZ(screen.refresh_attoseconds()));