summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/inptport.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/inptport.c')
-rw-r--r--src/emu/inptport.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/inptport.c b/src/emu/inptport.c
index cddb7f43e3a..caf984cd5af 100644
--- a/src/emu/inptport.c
+++ b/src/emu/inptport.c
@@ -231,7 +231,7 @@ struct ext_header
char header[7]; // must be "XINP" followed by NULLs
char shortname[9]; // game shortname
char version[32]; // MAME version string
- UINT32 starttime; // approximate INP start time
+ UINT32 starttime; // approximate INP start time
char dummy[32]; // for possible future expansion
};
@@ -1157,7 +1157,7 @@ static void setup_playback(running_machine *machine)
const char *filename = options_get_string(mame_options(), OPTION_PLAYBACK);
inp_header inpheader;
file_error filerr;
- time_t started_time;
+ time_t started_time;
struct ext_header xheader;
char check[7];
@@ -1204,8 +1204,8 @@ static void setup_playback(running_machine *machine)
// output info to console
mame_printf_info("Version string: %s\n",xheader.version);
- started_time = (time_t)xheader.starttime;
- mame_printf_info("Start time: %s\n", ctime(&started_time));
+ started_time = (time_t)xheader.starttime;
+ mame_printf_info("Start time: %s\n", ctime(&started_time));
// verify header against current game
if (strcmp(machine->gamedrv->name, xheader.shortname) != 0)