From a97df3c95325315066d26743eedf9f6671cef135 Mon Sep 17 00:00:00 2001 From: asvitkine <> Date: Tue, 27 Dec 2011 07:22:18 +0000 Subject: [PATCH] fix a warning --- SheepShaver/src/emul_op.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SheepShaver/src/emul_op.cpp b/SheepShaver/src/emul_op.cpp index fcf6a0cc..6c5b416a 100644 --- a/SheepShaver/src/emul_op.cpp +++ b/SheepShaver/src/emul_op.cpp @@ -261,7 +261,7 @@ void EmulOp(M68kRegisters *r, uint32 pc, int selector) // Patch DebugStr() static const uint8 proc_template[] = { - M68K_EMUL_OP_DEBUG_STR >> 8, M68K_EMUL_OP_DEBUG_STR, + M68K_EMUL_OP_DEBUG_STR >> 8, M68K_EMUL_OP_DEBUG_STR & 0xFF, 0x4e, 0x74, // rtd #4 0x00, 0x04 };