summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2011-06-05 15:13:45 +0000
committer Olivier Galibert <galibert@pobox.com>2011-06-05 15:13:45 +0000
commit87ab11f6d25096107cb08ede54894780f7f1a82a (patch)
treeb947223db896642b9681aa02ce3a36e180f866d8 /src
parentf2e42d1d490770be165d617cea70d7b3df07d71f (diff)
inpttype: fix typo (nwn)
Diffstat (limited to 'src')
-rw-r--r--src/emu/inpttype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/inpttype.h b/src/emu/inpttype.h
index 4383f87d126..4e027dce5b8 100644
--- a/src/emu/inpttype.h
+++ b/src/emu/inpttype.h
@@ -46,7 +46,7 @@
typelist.append(*global_alloc(input_type_entry(IPT_##_type, IPG_##_group, (_player == 0) ? _player : (_player) - 1, (_player == 0) ? #_type : ("P" #_player "_" #_type), _name, _seq)));
#define INPUT_PORT_ANALOG_TYPE(_player,_group,_type,_name,_seq,_decseq,_incseq) \
- typelist.append(*global_alloc(input_type_entry(IPT_##_type, IPG_##_group, (_player == 0) ? _player : (_player) - 1, (_player == 0) ? #_type : ("P" #_player "_" #_type), _name, _seq, _incseq, _decseq)));
+ typelist.append(*global_alloc(input_type_entry(IPT_##_type, IPG_##_group, (_player == 0) ? _player : (_player) - 1, (_player == 0) ? #_type : ("P" #_player "_" #_type), _name, _seq, _decseq, _incseq)));
void construct_core_types(simple_list<input_type_entry> &typelist)