summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-07-22 14:32:29 +1000
committer Vas Crabb <vas@vastheman.com>2017-07-22 14:32:29 +1000
commita11d1fe266af6f4212481c9e823bcde365ad0fae (patch)
tree21237cb3210d8f4e72e1db4d3208f6a3b9a2b035 /src/frontend/mame
parentae3fd3c0203ee952723380f308b201ec498ca984 (diff)
convenience macro for enum bitwise operators (nw)
Diffstat (limited to 'src/frontend/mame')
-rw-r--r--src/frontend/mame/cheat.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/cheat.h b/src/frontend/mame/cheat.h
index 93b7d1ebfb8..b685dba2c33 100644
--- a/src/frontend/mame/cheat.h
+++ b/src/frontend/mame/cheat.h
@@ -31,7 +31,7 @@ enum script_state
SCRIPT_STATE_CHANGE,
SCRIPT_STATE_COUNT
};
-DECLARE_ENUM_OPERATORS(script_state)
+DECLARE_ENUM_INCDEC_OPERATORS(script_state)