summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/emuopts.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/emuopts.cpp')
-rw-r--r--src/emu/emuopts.cpp38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/emu/emuopts.cpp b/src/emu/emuopts.cpp
index e68d597b7f1..2863ef35caf 100644
--- a/src/emu/emuopts.cpp
+++ b/src/emu/emuopts.cpp
@@ -267,9 +267,9 @@ void emu_options::value_changed(const std::string &name, const std::string &valu
//-------------------------------------------------
-// override_get_value - when saving to an INI, we
-// need to hook into that process so we can write
-// out image/slot options
+// override_get_value - when saving to an INI, we
+// need to hook into that process so we can write
+// out image/slot options
//-------------------------------------------------
core_options::override_get_value_result emu_options::override_get_value(const char *name, std::string &value) const
@@ -298,9 +298,9 @@ core_options::override_get_value_result emu_options::override_get_value(const ch
//-------------------------------------------------
-// override_set_value - when parsing an INI, we
-// need to hook into into it so we can do the same
-// crazy slot logic done in mameopt
+// override_set_value - when parsing an INI, we
+// need to hook into into it so we can do the same
+// crazy slot logic done in mameopt
//-------------------------------------------------
bool emu_options::override_set_value(const char *name, const std::string &value)
@@ -334,7 +334,7 @@ bool emu_options::override_set_value(const char *name, const std::string &value)
//-------------------------------------------------
-// slot_option ctor
+// slot_option ctor
//-------------------------------------------------
slot_option::slot_option(const char *default_value)
@@ -345,7 +345,7 @@ slot_option::slot_option(const char *default_value)
//-------------------------------------------------
-// slot_option::value
+// slot_option::value
//-------------------------------------------------
const std::string &slot_option::value() const
@@ -353,17 +353,17 @@ const std::string &slot_option::value() const
// There are a number of ways that the value can be determined; there
// is a specific order of precedence:
//
- // 1. Highest priority is whatever may have been specified by the user (whether it
- // was specified at the command line, an INI file, or in the UI). We keep track
- // of whether these values were specified this way
+ // 1. Highest priority is whatever may have been specified by the user (whether it
+ // was specified at the command line, an INI file, or in the UI). We keep track
+ // of whether these values were specified this way
//
- // Take note that slots have a notion of being "selectable". Slots that are not
- // marked as selectable cannot be specified with this technique
+ // Take note that slots have a notion of being "selectable". Slots that are not
+ // marked as selectable cannot be specified with this technique
//
- // 2. Next highest is what is returned from get_default_card_software()
+ // 2. Next highest is what is returned from get_default_card_software()
//
- // 3. Last in priority is what was specified as the slot default. This comes from
- // device setup
+ // 3. Last in priority is what was specified as the slot default. This comes from
+ // device setup
if (m_specified)
return m_specified_value;
else if (!m_default_card_software.empty())
@@ -374,7 +374,7 @@ const std::string &slot_option::value() const
//-------------------------------------------------
-// slot_option::specified_value
+// slot_option::specified_value
//-------------------------------------------------
std::string slot_option::specified_value() const
@@ -391,7 +391,7 @@ std::string slot_option::specified_value() const
//-------------------------------------------------
-// slot_option::specify
+// slot_option::specify
//-------------------------------------------------
void slot_option::specify(std::string &&text)
@@ -416,7 +416,7 @@ void slot_option::specify(std::string &&text)
//-------------------------------------------------
-// slot_option::set_bios
+// slot_option::set_bios
//-------------------------------------------------
void slot_option::set_bios(std::string &&text)