From: Ondřej Hošek Date: Wed, 18 May 2005 14:50:58 +0000 (+0000) Subject: Fixed bug with worldmap messages not being shown (we might want to fade the texts... X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=d2593ddcb69f1de8553b81b9052c1a7d70e47e3a;p=supertux.git Fixed bug with worldmap messages not being shown (we might want to fade the texts in/out later on) SVN-Revision: 2513 --- diff --git a/src/worldmap.cpp b/src/worldmap.cpp index 3649bab51..9f0c0c349 100644 --- a/src/worldmap.cpp +++ b/src/worldmap.cpp @@ -977,7 +977,7 @@ WorldMap::draw_status(DrawingContext& context) } } /* Display a passive message in the map, if needed */ - if(passive_message_timer.check()) + if(passive_message_timer.started()) context.draw_text(gold_text, passive_message, Vector(SCREEN_WIDTH/2, SCREEN_HEIGHT - white_text->get_height() - 60), CENTER_ALLIGN, LAYER_FOREGROUND1);