diff options
author | 2017-06-18 11:28:56 -0400 | |
---|---|---|
committer | 2017-06-19 10:37:03 +1000 | |
commit | c192588f61fd8d3654d1fb2be11dda52da44fed0 (patch) | |
tree | 079468843b05c253f00b06705bf0440711e4143b /src/emu/debug/debugcmd.cpp | |
parent | e14c43ae7e8c11d0fd729d0da267959264d798f4 (diff) |
Changed 'enum read_or_write' to be 'enum class'
Diffstat (limited to 'src/emu/debug/debugcmd.cpp')
-rw-r--r-- | src/emu/debug/debugcmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp index 843b8e383dc..145aaa0ac3f 100644 --- a/src/emu/debug/debugcmd.cpp +++ b/src/emu/debug/debugcmd.cpp @@ -2877,7 +2877,7 @@ void debugger_commands::execute_map(int ref, const std::vector<std::string> &par taddress = space->address_to_byte(address) & space->bytemask(); if (space->device().memory().translate(space->spacenum(), intention, taddress)) { - const char *mapname = space->get_handler_string((intention == TRANSLATE_WRITE_DEBUG) ? ROW_WRITE : ROW_READ, taddress); + const char *mapname = space->get_handler_string((intention == TRANSLATE_WRITE_DEBUG) ? read_or_write::WRITE : read_or_write::READ, taddress); m_console.printf( "%7s: %0*X logical == %0*X physical -> %s\n", intnames[intention & 3], |