From 820fc8f8ea57605a56e189325a3736d111c934bd Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Sat, 4 Sep 2010 20:55:22 +0000 Subject: [PATCH] Whoops, one more reference.... --- src/emu/debug/debugcmt.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/emu/debug/debugcmt.c b/src/emu/debug/debugcmt.c index 8465d284f3e..36873512cde 100644 --- a/src/emu/debug/debugcmt.c +++ b/src/emu/debug/debugcmt.c @@ -52,10 +52,10 @@ TYPE DEFINITIONS ***************************************************************************/ -typedef struct _debug_comment debug_comment; -struct _debug_comment +class debug_comment { - UINT8 is_valid; +public: + bool is_valid; UINT32 address; char text[DEBUG_COMMENT_MAX_LINE_LENGTH]; rgb_t color; @@ -78,7 +78,6 @@ public: ***************************************************************************/ static int debug_comment_load_xml(running_machine *machine, mame_file *file); -static void debug_comment_exit(running_machine &machine);