summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcmd.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-10-13 01:48:49 +1100
committer Vas Crabb <vas@vastheman.com>2020-10-13 01:48:49 +1100
commit853fdf754203698a38082fd7aa334191bb45971f (patch)
tree800dc590cbad1ae9a18ac3638e894dff748fa8c8 /src/emu/debug/debugcmd.cpp
parentd6f7c7febffd2b5014d2d65ab607262be773c0e6 (diff)
-emu/render.cpp: Load from all external artwork paths.
-emu/rendlay.cpp: Made real component drawing code a bit less gross. -emu/debugcon.cpp: Less screaming now that things aren't macros.
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r--src/emu/debug/debugcmd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp
index acc25e9ab8f..9b33eac7b45 100644
--- a/src/emu/debug/debugcmd.cpp
+++ b/src/emu/debug/debugcmd.cpp
@@ -650,12 +650,12 @@ bool debugger_commands::debug_command_parameter_command(const char *param)
/* validate the comment; success if no error */
CMDERR err = m_console.validate_command(param);
- if (err.ERROR_CLASS() == CMDERR::NONE)
+ if (err.error_class() == CMDERR::NONE)
return true;
/* output an error */
m_console.printf("Error in command: %s\n", param);
- m_console.printf(" %*s^", err.ERROR_OFFSET(), "");
+ m_console.printf(" %*s^", err.error_offset(), "");
m_console.printf("%s\n", debugger_console::cmderr_to_string(err));
return 0;
}