From 4c7ef020169446d49b1e1a7ba154c2226dc4d3f0 Mon Sep 17 00:00:00 2001 From: AJR Date: Sun, 4 Aug 2019 15:29:14 -0400 Subject: [PATCH] arm7dasm.cpp: Remove unnecessary newline (nw) --- src/devices/cpu/arm7/arm7dasm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/cpu/arm7/arm7dasm.cpp b/src/devices/cpu/arm7/arm7dasm.cpp index efe3459898c..61dbeada549 100644 --- a/src/devices/cpu/arm7/arm7dasm.cpp +++ b/src/devices/cpu/arm7/arm7dasm.cpp @@ -1279,7 +1279,7 @@ u32 arm7_disassembler::thumb_disasm(std::ostream &stream, uint32_t pc, uint16_t util::stream_format( stream, "INVALID"); break; case COND_NV: - util::stream_format( stream, "SWI %02x\n", opcode & 0xff); + util::stream_format( stream, "SWI %02x", opcode & 0xff); break; } break;