From 243fc2664af4053d67cfbbb4fcda3eece4fc8d69 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Fri, 13 May 2011 14:39:04 +0000 Subject: [PATCH] motorway instruction text fishy --- Plugins/JSONDescriptor.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/JSONDescriptor.h b/Plugins/JSONDescriptor.h index e82508386..ae9987332 100644 --- a/Plugins/JSONDescriptor.h +++ b/Plugins/JSONDescriptor.h @@ -165,9 +165,9 @@ public: entireDistance += _dist; } else { if(type == 0 && prevType != 0) - routeInstructionString += ",enter motorway and "; + routeInstructionString += ",enter motorway, "; if(type != 0 && prevType == 0 ) - routeInstructionString += ",leave motorway and "; + routeInstructionString += ",leave motorway, "; routeInstructionString += "\", \""; if(nameID != 0) routeInstructionString += sEngine->GetEscapedNameForNameID(nameID);