diff options
author | Mike Pavone <pavone@retrodev.com> | 2012-12-20 00:44:59 -0800 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2012-12-20 00:44:59 -0800 |
commit | 45779ee397097f3249eb1a1a858c0f0ac02d3bba (patch) | |
tree | 01ee26e3746603d1077ba05b295498c0bde02cee /m68k_to_x86.c | |
parent | a8cc92ea4de90aed27a5163eabb46114f1e16e25 (diff) |
Gamepad support
Diffstat (limited to 'm68k_to_x86.c')
-rw-r--r-- | m68k_to_x86.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/m68k_to_x86.c b/m68k_to_x86.c index d566b3a..3a84079 100644 --- a/m68k_to_x86.c +++ b/m68k_to_x86.c @@ -906,6 +906,7 @@ uint8_t * translate_shift(uint8_t * dst, m68kinst * inst, x86_ea *src_op, x86_ea if (inst->src.addr_mode == MODE_UNUSED) { dst = m68k_save_result(inst, dst, opts); } + return dst; } uint8_t * translate_m68k(uint8_t * dst, m68kinst * inst, x86_68k_options * opts) |