summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-09-26 04:46:55 +1000
committer Vas Crabb <vas@vastheman.com>2016-09-26 04:51:59 +1000
commit33b2c733955112083b2912d4115eb0465026b4d0 (patch)
treefbbf0f355577aaf9a18dfa5ce269615ed5e70bec /src/emu
parentfbbc293041838bf6007c439c57745f79b2c8d4fb (diff)
srcclean (nw)
Diffstat (limited to 'src/emu')
-rw-r--r--src/emu/diimage.cpp4
-rw-r--r--src/emu/dirom.cpp1
-rw-r--r--src/emu/input.cpp8
-rw-r--r--src/emu/romload.cpp1
-rw-r--r--src/emu/softlist.cpp2
-rw-r--r--src/emu/softlist.h1
6 files changed, 6 insertions, 11 deletions
diff --git a/src/emu/diimage.cpp b/src/emu/diimage.cpp
index 223ee296327..72dd9b01d6a 100644
--- a/src/emu/diimage.cpp
+++ b/src/emu/diimage.cpp
@@ -542,8 +542,8 @@ UINT32 device_image_interface::crc()
//-------------------------------------------------
// support_command_line_image_creation - do we
-// want to support image creation from the front
-// end command line?
+// want to support image creation from the front
+// end command line?
//-------------------------------------------------
bool device_image_interface::support_command_line_image_creation() const
diff --git a/src/emu/dirom.cpp b/src/emu/dirom.cpp
index 0a359c7d07b..84b4e6a8c4b 100644
--- a/src/emu/dirom.cpp
+++ b/src/emu/dirom.cpp
@@ -90,4 +90,3 @@ void device_rom_interface::interface_pre_start()
}
}
}
-
diff --git a/src/emu/input.cpp b/src/emu/input.cpp
index 4c8aad97307..93f349cee3a 100644
--- a/src/emu/input.cpp
+++ b/src/emu/input.cpp
@@ -2106,7 +2106,7 @@ void input_manager::seq_from_tokens(input_seq &seq, const char *string)
}
//-------------------------------------------------
-// map_device_to_controller - map device to
+// map_device_to_controller - map device to
// controller based on device map table
//-------------------------------------------------
@@ -2117,13 +2117,13 @@ bool input_manager::map_device_to_controller(const devicemap_table_type *devicem
for (devicemap_table_type::const_iterator it = devicemap_table->begin(); it != devicemap_table->end(); it++)
{
- const char *deviceid = it->first.c_str();
- const char *controllername = it->second.c_str();
+ const char *deviceid = it->first.c_str();
+ const char *controllername = it->second.c_str();
// tokenize the controller name into device class and index (i.e. controller name should be of the form "GUNCODE_1")
std::string token[2];
int numtokens;
- const char *_token = controllername;
+ const char *_token = controllername;
for (numtokens = 0; numtokens < ARRAY_LENGTH(token); )
{
// make a token up to the next underscore
diff --git a/src/emu/romload.cpp b/src/emu/romload.cpp
index 7a983118e8a..be05a4505bc 100644
--- a/src/emu/romload.cpp
+++ b/src/emu/romload.cpp
@@ -1513,4 +1513,3 @@ std::vector<rom_entry> rom_build_entries(const tiny_rom_entry *tinyentries)
}
return result;
}
-
diff --git a/src/emu/softlist.cpp b/src/emu/softlist.cpp
index 684c83a82c5..dc433a54507 100644
--- a/src/emu/softlist.cpp
+++ b/src/emu/softlist.cpp
@@ -879,5 +879,3 @@ bool software_name_parse(const std::string &identifier, std::string *list_name,
*part_name = identifier.substr(split2 + 1);
return true;
}
-
-
diff --git a/src/emu/softlist.h b/src/emu/softlist.h
index a47ab9417f0..a303a819f26 100644
--- a/src/emu/softlist.h
+++ b/src/emu/softlist.h
@@ -211,4 +211,3 @@ private:
bool software_name_parse(const std::string &identifier, std::string *list_name = nullptr, std::string *software_name = nullptr, std::string *part_name = nullptr);
#endif // __SOFTLIST_H_
-