summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/clifront.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/clifront.c')
-rw-r--r--src/emu/clifront.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/src/emu/clifront.c b/src/emu/clifront.c
index c0258f75b62..c9b82dbe4a7 100644
--- a/src/emu/clifront.c
+++ b/src/emu/clifront.c
@@ -36,27 +36,27 @@
class media_identifier
{
public:
- // construction/destruction
- media_identifier(cli_options &options);
+ // construction/destruction
+ media_identifier(cli_options &options);
- // getters
- int total() const { return m_total; }
- int matches() const { return m_matches; }
- int nonroms() const { return m_nonroms; }
+ // getters
+ int total() const { return m_total; }
+ int matches() const { return m_matches; }
+ int nonroms() const { return m_nonroms; }
- // operations
- void reset() { m_total = m_matches = m_nonroms = 0; }
- void identify(const char *name);
- void identify_file(const char *name);
- void identify_data(const char *name, const UINT8 *data, int length);
- int find_by_hash(const hash_collection &hashes, int length);
+ // operations
+ void reset() { m_total = m_matches = m_nonroms = 0; }
+ void identify(const char *name);
+ void identify_file(const char *name);
+ void identify_data(const char *name, const UINT8 *data, int length);
+ int find_by_hash(const hash_collection &hashes, int length);
private:
- // internal state
- driver_enumerator m_drivlist;
- int m_total;
- int m_matches;
- int m_nonroms;
+ // internal state
+ driver_enumerator m_drivlist;
+ int m_total;
+ int m_matches;
+ int m_nonroms;
};
@@ -1619,8 +1619,8 @@ void cli_frontend::execute_commands(const char *exename)
}
if (!m_osd.execute_command(m_options.command()))
- // if we get here, we don't know what has been requested
- throw emu_fatalerror(MAMERR_INVALID_CONFIG, "Unknown command '%s' specified", m_options.command());
+ // if we get here, we don't know what has been requested
+ throw emu_fatalerror(MAMERR_INVALID_CONFIG, "Unknown command '%s' specified", m_options.command());
}