X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fobject%2Flevel_time.cpp;h=44d656b81276851e69ac60f26a46791537b48e9b;hb=8099ed94a2642c410ebcd1315a28d14fa6524d49;hp=8cc4d092b208e13aecfdaac2b1f53a4f1a89f9f9;hpb=a9c846efec55918b3e6ded6a0e8346137e53f739;p=supertux.git diff --git a/src/object/level_time.cpp b/src/object/level_time.cpp index 8cc4d092b..44d656b81 100644 --- a/src/object/level_time.cpp +++ b/src/object/level_time.cpp @@ -88,11 +88,13 @@ LevelTime::draw(DrawingContext& context) ss << int(time_left); std::string time_text = ss.str(); - Surface* time_surf = time_surface.get(); - if (time_surf) { - float all_width = time_surf->get_width() + Resources::normal_font->get_text_width(time_text); - context.draw_surface(time_surf, Vector((SCREEN_WIDTH - all_width)/2, BORDER_Y + 1), LAYER_FOREGROUND1); - context.draw_text(Resources::normal_font, time_text, Vector((SCREEN_WIDTH - all_width)/2 + time_surf->get_width(), BORDER_Y), ALIGN_LEFT, LAYER_FOREGROUND1, LevelTime::text_color); + if (time_surface) + { + float all_width = time_surface->get_width() + Resources::normal_font->get_text_width(time_text); + context.draw_surface(time_surface, Vector((SCREEN_WIDTH - all_width)/2, BORDER_Y + 1), LAYER_FOREGROUND1); + context.draw_text(Resources::normal_font, time_text, + Vector((SCREEN_WIDTH - all_width)/2 + time_surface->get_width(), BORDER_Y), + ALIGN_LEFT, LAYER_FOREGROUND1, LevelTime::text_color); } }