summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2025-10-21 19:22:21 +0200
committer Olivier Galibert <galibert@pobox.com>2025-10-21 19:22:25 +0200
commitd0f81f88b7cf6004e6df3dba40d827c43a3a3862 (patch)
treefb710cdea83a96a04b0ef166db15d97b76f7bdbe
parent2dee4616043cace12c456a302bc88e2cc7595b28 (diff)
fill q.value was not working, you will not guess what the bug was
-rw-r--r--src/emu/debug/debugcmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/debug/debugcmd.cpp b/src/emu/debug/debugcmd.cpp
index 9ca407cec3f..8539e620588 100644
--- a/src/emu/debug/debugcmd.cpp
+++ b/src/emu/debug/debugcmd.cpp
@@ -3907,7 +3907,7 @@ void debugger_commands::execute_fill(int spacenum, const std::vector<std::string
break;
case 8:
- tspace->read_qword_unaligned(address, fill_data[j]);
+ tspace->write_qword_unaligned(address, fill_data[j]);
break;
}
offset += fill_data_size[j];