diff options
author | 2011-06-07 06:33:48 +0000 | |
---|---|---|
committer | 2011-06-07 06:33:48 +0000 | |
commit | c7ee86e0e14d51e4d9d25b95a7f365e0200bfb3e (patch) | |
tree | 17450f4515197f2a47c71547ace7506a5c1ad99a | |
parent | 5680f6987c6b2bac86327045647ebfa4fcef6d25 (diff) |
fixed building with msvc
-rw-r--r-- | src/emu/inptport.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/inptport.c b/src/emu/inptport.c index 2e8c382300d..c729aa9005f 100644 --- a/src/emu/inptport.c +++ b/src/emu/inptport.c @@ -3478,7 +3478,7 @@ static void save_game_inputs(running_machine &machine, xml_data_node *parentnode for (field = port->first_field(); field != NULL; field = field->next()) if (save_this_input_field_type(field->type)) { - int changed = FALSE; + bool changed = false; int seqtype; /* determine if we changed */ |