diff options
| author | 2015-01-28 09:20:10 +0100 | |
|---|---|---|
| committer | 2015-01-28 09:20:10 +0100 | |
| commit | 26e7a17b6326aa5a75a6276e52cf84a94c16d7a0 (patch) | |
| tree | bab4468226c59d590688e0ece892f5bfbca58736 /src/emu/clifront.c | |
| parent | 13b862c4fae88f0f819c2c4416d49249e4de45b9 (diff) | |
Cleanups and version bumpmame0158
Diffstat (limited to 'src/emu/clifront.c')
| -rw-r--r-- | src/emu/clifront.c | 38 |
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()); } |
