From 6c7f8fc8b4974a4546190d5c2e9abcdfa74f9382 Mon Sep 17 00:00:00 2001 From: smatz Date: Sun, 4 Oct 2009 20:51:50 +0000 Subject: (svn r17701) -Codechange: don't start line with a space if it's not inside comment --- src/strings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/strings.cpp') diff --git a/src/strings.cpp b/src/strings.cpp index 66eb6b92b..bfe583148 100644 --- a/src/strings.cpp +++ b/src/strings.cpp @@ -535,7 +535,7 @@ static const Units units[] = { */ uint ConvertSpeedToDisplaySpeed(uint speed) { - return (speed * units[_settings_game.locale.units].s_m) >> units[_settings_game.locale.units].s_s; + return (speed * units[_settings_game.locale.units].s_m) >> units[_settings_game.locale.units].s_s; } /** -- cgit v1.2.3-54-g00ecf