summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2008-07-04 03:10:33 +0000
committer Nathan Woods <npwoods@mess.org>2008-07-04 03:10:33 +0000
commita0866bcacdd10a66d5c08adcde2603b6208921ba (patch)
treec8b719cb7b51413ff61696f6424332520b065705 /src
parent9ca59d7c2596f3c4307293a9881e821ea99ac231 (diff)
MESS-specific tweak
Diffstat (limited to 'src')
-rw-r--r--src/emu/cheat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cheat.c b/src/emu/cheat.c
index 7a2186a8908..9577d7f6121 100644
--- a/src/emu/cheat.c
+++ b/src/emu/cheat.c
@@ -9820,7 +9820,7 @@ static void load_cheat_code_old(running_machine *machine, char *file_name)
cheat_format *format = &cheat_format_table[LOAD_CHEAT_CODE_OLD];
#ifdef MESS
- if(sscanf(buf, format->format_string, &crc, buffer->name, &cpu, &address, &data, &code, buffer->description, buffer->comment) < format->aruguments_matched) continue;
+ if(sscanf(buf, format->format_string, &crc, buffer->name, &cpu, &address, &data, &code, buffer->description, buffer->comment) < format->arguments_matched) continue;
#else
if(sscanf(buf, format->format_string, buffer->name, &cpu, &address, &data, &code, buffer->description, buffer->comment) < format->arguments_matched) continue;
#endif