summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend')
-rw-r--r--src/frontend/mame/info.cpp12
-rw-r--r--src/frontend/mame/info.h2
-rw-r--r--src/frontend/mame/ui/ui.cpp4
3 files changed, 9 insertions, 9 deletions
diff --git a/src/frontend/mame/info.cpp b/src/frontend/mame/info.cpp
index f98bea8b3e2..5be974239d9 100644
--- a/src/frontend/mame/info.cpp
+++ b/src/frontend/mame/info.cpp
@@ -264,7 +264,7 @@ info_xml_creator::info_xml_creator(emu_options const &options, bool dtd)
//-------------------------------------------------
// output - print the XML information for all
-// known machines matching a pattern
+// known machines matching a pattern
//-------------------------------------------------
void info_xml_creator::output(std::ostream &out, const std::vector<std::string> &patterns)
@@ -323,15 +323,15 @@ void info_xml_creator::output(std::ostream &out, const std::vector<std::string>
//-------------------------------------------------
// output - print the XML information for all
-// known (and filtered) machines
+// known (and filtered) machines
//-------------------------------------------------
void info_xml_creator::output(std::ostream &out, const std::function<bool(const char *shortname, bool &done)> &filter, bool include_devices)
{
struct prepared_info
{
- std::string m_xml_snippet;
- device_type_set m_dev_set;
+ std::string m_xml_snippet;
+ device_type_set m_dev_set;
};
// prepare a driver enumerator and the queue
@@ -395,7 +395,7 @@ void info_xml_creator::output(std::ostream &out, const std::function<bool(const
// emit the XML
output_header_if_necessary(out);
out << pi.m_xml_snippet;
-
+
// merge devices into devfilter, if appropriate
if (devfilter)
{
@@ -2018,4 +2018,4 @@ bool device_type_compare::operator()(const std::add_pointer_t<device_type> &lhs,
return strcmp(lhs->shortname(), rhs->shortname()) < 0;
}
-} \ No newline at end of file
+}
diff --git a/src/frontend/mame/info.h b/src/frontend/mame/info.h
index 31dfbf88098..2867391267c 100644
--- a/src/frontend/mame/info.h
+++ b/src/frontend/mame/info.h
@@ -39,7 +39,7 @@ public:
private:
// internal state
emu_options m_lookup_options;
- bool m_dtd;
+ bool m_dtd;
};
#endif // MAME_FRONTEND_MAME_INFO_H
diff --git a/src/frontend/mame/ui/ui.cpp b/src/frontend/mame/ui/ui.cpp
index 446c848939f..4269e674f84 100644
--- a/src/frontend/mame/ui/ui.cpp
+++ b/src/frontend/mame/ui/ui.cpp
@@ -353,8 +353,8 @@ void mame_ui_manager::display_startup_screens(bool first_time)
warning << _("This driver requires images to be loaded in the following device(s): ");
output_joined_collection(mandatory_images,
- [&warning](const std::reference_wrapper<const std::string> &img) { warning << "\"" << img.get() << "\""; },
- [&warning]() { warning << ","; });
+ [&warning](const std::reference_wrapper<const std::string> &img) { warning << "\"" << img.get() << "\""; },
+ [&warning]() { warning << ","; });
ui::menu_file_manager::force_file_manager(*this, machine().render().ui_container(), warning.str().c_str());
}