Whoops, one more reference....

This commit is contained in:
Aaron Giles 2010-09-04 20:55:22 +00:00
parent 15ec9dd390
commit 820fc8f8ea

View File

@ -52,10 +52,10 @@
TYPE DEFINITIONS TYPE DEFINITIONS
***************************************************************************/ ***************************************************************************/
typedef struct _debug_comment debug_comment; class debug_comment
struct _debug_comment
{ {
UINT8 is_valid; public:
bool is_valid;
UINT32 address; UINT32 address;
char text[DEBUG_COMMENT_MAX_LINE_LENGTH]; char text[DEBUG_COMMENT_MAX_LINE_LENGTH];
rgb_t color; rgb_t color;
@ -78,7 +78,6 @@ public:
***************************************************************************/ ***************************************************************************/
static int debug_comment_load_xml(running_machine *machine, mame_file *file); static int debug_comment_load_xml(running_machine *machine, mame_file *file);
static void debug_comment_exit(running_machine &machine);