From f8c92a179bc41d026467c5291d7855a9b87a1de2 Mon Sep 17 00:00:00 2001 From: danij Date: Fri, 7 Nov 2014 23:13:39 +0000 Subject: [PATCH] BindContext|InputSystem|Client: Tweaked formatting of bind command/impulse announcements --- doomsday/client/src/ui/bindcontext.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doomsday/client/src/ui/bindcontext.cpp b/doomsday/client/src/ui/bindcontext.cpp index ef2d2a433e..c33b401514 100644 --- a/doomsday/client/src/ui/bindcontext.cpp +++ b/doomsday/client/src/ui/bindcontext.cpp @@ -255,7 +255,7 @@ CommandBinding *BindContext::bindCommand(char const *eventDesc, char const *comm /// replacement is ok. For now, just delete the other binding. deleteMatching(bind, nullptr); - LOG_INPUT_VERBOSE("Command \"%s\" now bound to \"%s\" in " _E(b) "'%s'" + LOG_INPUT_VERBOSE("Command " _E(b) "\"%s\"" _E(.) " now bound to " _E(b) "\"%s\"" _E(.) " in " _E(b) "'%s'" _E(.) " with binding Id " _E(b) "%i") << command << eventDesc << d->name << bind->id; @@ -291,7 +291,7 @@ ImpulseBinding *BindContext::bindImpulse(char const *ctrlDesc, /// replacement is ok. For now, just delete the other binding. deleteMatching(nullptr, bind); - LOG_INPUT_VERBOSE("Impulse " _E(b) "'%s'" _E(.) " of player%i now bound to \"%s\" in " _E(b) "'%s'" + LOG_INPUT_VERBOSE("Impulse " _E(b) "'%s'" _E(.) " of player%i now bound to \"%s\" in " _E(b) "'%s'" _E(.) " with binding Id " _E(b) "%i") << impulse.name << (localPlayer + 1) << ctrlDesc << d->name << bind->id;