From: LMH Date: Sun, 8 Sep 2013 02:01:49 +0000 (-1000) Subject: Added a missing 'break' statement to statistics X-Git-Url: https://git.octo.it/?p=supertux.git;a=commitdiff_plain;h=729ab543adbc83a8cecfa3c9aeaa831de9918866 Added a missing 'break' statement to statistics --- diff --git a/src/supertux/statistics.cpp b/src/supertux/statistics.cpp index 22dbace62..e14f4bd19 100644 --- a/src/supertux/statistics.cpp +++ b/src/supertux/statistics.cpp @@ -148,6 +148,7 @@ Statistics::draw_worldmap_info(DrawingContext& context, float target_time) caption_buf = ""; stat_buf = ""; } + break; default: log_debug << "Invalid stat requested to be drawn" << std::endl; break;