From de50ea46e89242968fb9729b67666f449fb2804f Mon Sep 17 00:00:00 2001 From: konstin Date: Mon, 17 Mar 2014 17:01:34 +0100 Subject: [PATCH] Allow karts to specifie a different sound effect for their engine; closes #1234 --- src/karts/kart_properties.cpp | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/src/karts/kart_properties.cpp b/src/karts/kart_properties.cpp index 8cd676fe1..670d10617 100644 --- a/src/karts/kart_properties.cpp +++ b/src/karts/kart_properties.cpp @@ -560,9 +560,17 @@ void KartProperties::getAllData(const XMLNode * root) else if (s == "small") m_engine_sfx_type = "engine_small"; else { - Log::warn("[KartProperties]", "Kart '%s' has invalid engine '%s'.", - m_name.c_str(), s.c_str()); - m_engine_sfx_type = "engine_small"; + if (sfx_manager->soundExist(s)) + { + m_engine_sfx_type = s; + } + else + { + Log::error("[KartProperties]", + "Kart '%s' has an invalid engine '%s'.", + m_name.c_str(), s.c_str()); + m_engine_sfx_type = "engine_small"; + } } #ifdef WILL_BE_ENABLED_ONCE_DONE_PROPERLY