summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/tagmap.c
blob: 7995b578314912de78779de7998deff4b67ead0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
/***************************************************************************

    tagmap.c

    tagmap counter

***************************************************************************/

#include <assert.h>

#include "tagmap.h"

#ifdef MAME_DEBUG
/** @brief  The tagmap finds. */
INT32 g_tagmap_finds = 0;
/** @brief  true to enable, false to disable the tagmap counter. */
bool g_tagmap_counter_enabled = false;
#endif