From 4ea918ab3b06ea5271e1ad0776441404c483f217 Mon Sep 17 00:00:00 2001 From: Edoardo Prezioso Date: Tue, 6 Jan 2015 23:16:25 +0100 Subject: [PATCH] - Fixed bad characters in the info command string. --- src/c_cmds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/c_cmds.cpp b/src/c_cmds.cpp index 3dd97434e2..9290c36c37 100644 --- a/src/c_cmds.cpp +++ b/src/c_cmds.cpp @@ -900,8 +900,8 @@ CCMD(info) linetarget->SpawnHealth()); PrintMiscActorInfo(linetarget); } - else Printf("No target found. Info cannot find actors that have\ - the NOBLOCKMAP flag or have height/radius of 0.\n"); + else Printf("No target found. Info cannot find actors that have " + "the NOBLOCKMAP flag or have height/radius of 0.\n"); } //-----------------------------------------------------------------------------