diff options
author | 2011-01-24 05:09:05 +0000 | |
---|---|---|
committer | 2011-01-24 05:09:05 +0000 | |
commit | b3d7e09292e4e9995349a4605177ce66a5afa696 (patch) | |
tree | 8aa035366d5f0670286f8be9202553adfc1f2a0a /src/emu/clifront.c | |
parent | 8a8b7d7a52862fcad86a93fba9c6d5814dff59b5 (diff) |
Cleanups and version bump.mame0141u1
Diffstat (limited to 'src/emu/clifront.c')
-rw-r--r-- | src/emu/clifront.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/clifront.c b/src/emu/clifront.c index 58bc7eb3d4e..62cbc6aab9b 100644 --- a/src/emu/clifront.c +++ b/src/emu/clifront.c @@ -162,7 +162,7 @@ int cli_execute(int argc, char **argv, osd_interface &osd, const options_entry * core_filename_extract_base(&gamename, gamename_option, TRUE); driver = driver_get_name(gamename); - /* execute any commands specified */ + /* execute any commands specified */ result = execute_commands(options, exename, driver); if (result != -1) goto error; @@ -181,7 +181,7 @@ int cli_execute(int argc, char **argv, osd_interface &osd, const options_entry * result = MAMERR_INVALID_CONFIG; goto error; } - + /* run the game */ result = mame_execute(osd, options); @@ -882,7 +882,7 @@ static int info_listsoftware(core_options *options, const char *gamename) "<softwarelists>\n" ); } - + for ( int drvindex = 0; drivers[drvindex] != NULL; drvindex++ ) { if ( mame_strwildcmp( gamename, drivers[drvindex]->name ) == 0 ) |