diff options
| author | 2012-04-05 18:25:39 +0000 | |
|---|---|---|
| committer | 2012-04-05 18:25:39 +0000 | |
| commit | f87e01ed81d2af9d403b37de913a89597e23955a (patch) | |
| tree | 4b2fd769786d163bcaaf3c4057ab2c681bbc42f7 /src/emu/debug/debugcmd.c | |
| parent | afa1478b7cc1423a9734f4b795599a196bf03aaa (diff) | |
Converted memory_private to memory_manager and moved global memory
operations into methods on it. Converted the less-popular cases over
in drivers that used them, leaving the bank management APIs global
for now.
Diffstat (limited to 'src/emu/debug/debugcmd.c')
| -rw-r--r-- | src/emu/debug/debugcmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.c b/src/emu/debug/debugcmd.c index 5bba55c55d3..3bb8eb97581 100644 --- a/src/emu/debug/debugcmd.c +++ b/src/emu/debug/debugcmd.c @@ -2596,7 +2596,7 @@ static void execute_memdump(running_machine &machine, int ref, int params, const file = fopen(filename, "w"); if (file) { - memory_dump(machine, file); + machine.memory().dump(file); fclose(file); } } |
