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.verplant.org/?a=commitdiff_plain;h=5a5e9b4fdeaaaff4337b90212de3996fd20450cf;p=supertux.git 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;