diff options
author | 2015-11-08 12:56:12 +0100 | |
---|---|---|
committer | 2015-11-08 12:56:12 +0100 | |
commit | 7c19aac60e12d6f5ea301bdb34d7826a01e0b06f (patch) | |
tree | f310d86aa2c6bfc19d115307dedde4eb0cd52dad /src/lib/util/tagmap.cpp | |
parent | a57b46ae933badd7441ce1644711dbb851e2b504 (diff) |
Rename *.c -> *.cpp in our source (nw)
Diffstat (limited to 'src/lib/util/tagmap.cpp')
-rw-r--r-- | src/lib/util/tagmap.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/lib/util/tagmap.cpp b/src/lib/util/tagmap.cpp new file mode 100644 index 00000000000..7995b578314 --- /dev/null +++ b/src/lib/util/tagmap.cpp @@ -0,0 +1,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 |