From c8e85be0d34c2c9aff9ceda2b695bf5237b4c40a Mon Sep 17 00:00:00 2001 From: mbjornstk Date: Wed, 28 Mar 2012 23:55:45 +0000 Subject: [PATCH] Fix crash when printing cake messages. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@11045 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- src/items/cake.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/items/cake.cpp b/src/items/cake.cpp index 769417918..6994fa27f 100644 --- a/src/items/cake.cpp +++ b/src/items/cake.cpp @@ -152,7 +152,7 @@ const core::stringw Cake::getHitString(const AbstractKart *kart) const //I18N: shown when hit by cake. %1 is the attacker, %0 is the victim. case 2: return _LTR("%0 should not play with %1's lunch"); //I18N: shown when hit by cake. %1 is the attacker, %0 is the victim. - case 4: return _LTR("%1 ruins %0's cakeless diet"); + case 3: return _LTR("%1 ruins %0's cakeless diet"); default: assert(false); return L""; // avoid compiler warning } } // getHitString