summaryrefslogtreecommitdiffstats
path: root/src/emu/debug/debugcmd.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-02-24 14:07:24 +0100
committer Olivier Galibert <galibert@pobox.com>2018-02-24 14:09:46 +0100
commitc5345b9ea8a5b6939c55621024bce8e1eade4fdd (patch)
treed75c88692ac40de1f5d7b0a647de7aa4b987bcdc /src/emu/debug/debugcmd.cpp
parent1b9a2d8891b1c809f56622380447500e9716790d (diff)
Grammar police (nw)
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 60c859bbe21..b0e9053dfd4 100644
--- a/src/emu/debug/debugcmd.cpp
+++ b/src/emu/debug/debugcmd.cpp
@@ -1691,7 +1691,7 @@ void debugger_commands::execute_save(int ref, const std::vector<std::string> &pa
}
/* now write the data out */
- auto dis = space->device().machine().disable_side_effect();
+ auto dis = space->device().machine().disable_side_effects();
switch (space->addr_shift())
{
case -3:
@@ -1917,7 +1917,7 @@ void debugger_commands::execute_dump(int ref, const std::vector<std::string> &pa
else if(shift < 0)
width >>= -shift;
- auto dis = space->device().machine().disable_side_effect();
+ auto dis = space->device().machine().disable_side_effects();
bool be = space->endianness() == ENDIANNESS_BIG;
for (offs_t i = offset; i <= endoffset; i += rowsize)