diff options
Diffstat (limited to 'src/emu/inptport.h')
-rw-r--r-- | src/emu/inptport.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/inptport.h b/src/emu/inptport.h index 8f25a022a20..c6af78b0b32 100644 --- a/src/emu/inptport.h +++ b/src/emu/inptport.h @@ -1152,7 +1152,7 @@ const char *input_port_string_from_token(const input_port_token token); ***************************************************************************/ /*------------------------------------------------- - input_port_by_tag - return the config that + input_port_by_tag - return the config that matches the given tag -------------------------------------------------*/ @@ -1161,7 +1161,7 @@ INLINE const input_port_config *input_port_by_tag(const input_port_list *portlis /* use the map if we have it */ if (portlist->map != NULL) return tagmap_find_hash_only(portlist->map, tag); - + /* otherwise, do it the slow way */ return input_port_by_tag_slow(portlist, tag); } |