summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/debug/debugcmd.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-08-19 14:19:38 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-08-19 14:19:38 +0000
commit44c78c4939eedf00ee351f300761ed60a2da0ea3 (patch)
treed94827e7133e1ef7f95ca1d93d8cf8eb59468c80 /src/emu/debug/debugcmd.c
parenta86a4c3684fbd6cd04f7da3b536c578955bfc749 (diff)
Remove most of the temporary inline helpers.
The only one that touched a lot of drivers is this one: S: memory_set_decrypted_region( *)\(( *)([^,]+)( *),( *) R: \3->set_decrypted_region\1\(\2
Diffstat (limited to 'src/emu/debug/debugcmd.c')
-rw-r--r--src/emu/debug/debugcmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.c b/src/emu/debug/debugcmd.c
index 03b7b038bb3..f0cea80fc53 100644
--- a/src/emu/debug/debugcmd.c
+++ b/src/emu/debug/debugcmd.c
@@ -163,7 +163,7 @@ static void execute_hardreset(running_machine *machine, int ref, int params, con
INLINE int cheat_address_is_valid(address_space *space, offs_t address)
{
- return debug_cpu_translate(space, TRANSLATE_READ, &address) && (memory_get_write_ptr(space, address) != NULL);
+ return debug_cpu_translate(space, TRANSLATE_READ, &address) && (space->get_write_ptr(address) != NULL);
}