From df5635e90ff4f16204c7e4e16f9d93ca7a538d9c Mon Sep 17 00:00:00 2001 From: hiker Date: Sat, 18 Oct 2014 12:10:27 +1100 Subject: [PATCH] Fixed typo in warning message. --- src/karts/kart_model.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/karts/kart_model.cpp b/src/karts/kart_model.cpp index b3bc16b4a..4a25a78e2 100644 --- a/src/karts/kart_model.cpp +++ b/src/karts/kart_model.cpp @@ -622,9 +622,9 @@ void KartModel::loadWheelInfo(const XMLNode &node, // stk_config file is read (which has no model information). if(m_model_filename!="") { - Log::error("Kart_Model", "Missing wheel information '%s' for model" + Log::error("Kart_Model", "Missing wheel information '%s' for model " "'%s'.", wheel_name.c_str(), m_model_filename.c_str()); - Log::error("Kart_Model", "This can be ignored, but the wheels will" + Log::error("Kart_Model", "This can be ignored, but the wheels will " "not rotate."); } return;