summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2018-02-28 15:06:48 +0100
committer Olivier Galibert <galibert@pobox.com>2018-02-28 15:08:10 +0100
commit9eecf6787108e71075ebcab4b8e2e2d8a260a207 (patch)
tree80211873e6586dbd95be11734e0dce6fb58043a0 /src/tools
parent910d2267cad32587d3f8fa19ff603e15d2f336cb (diff)
unidasm typo fix (nw)
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/unidasm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp
index 25e2452ac7f..73cd820c2bd 100644
--- a/src/tools/unidasm.cpp
+++ b/src/tools/unidasm.cpp
@@ -776,7 +776,7 @@ unidasm_data_buffer::unidasm_data_buffer(util::disasm_interface *_disasm, const
case -2:
lr8 = [](offs_t pc) -> u8 { abort(); };
lr16 = [](offs_t pc) -> u16 { abort(); };
- lr32 = [this](offs_t pc) -> u16 {
+ lr32 = [this](offs_t pc) -> u32 {
const u32 *p = get_ptr<u32>(pc);
return p ?
p[0]