CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: David White <[EMAIL PROTECTED]> 05/01/02 05:40:05
Modified files:
src : video.cpp
Log message:
made it so that the chat widget will appear above, instead of below map
labels
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/video.cpp.diff?tr1=1.53&tr2=1.54&r1=text&r2=text
Patches:
Index: wesnoth/src/video.cpp
diff -u wesnoth/src/video.cpp:1.53 wesnoth/src/video.cpp:1.54
--- wesnoth/src/video.cpp:1.53 Thu Nov 18 22:00:13 2004
+++ wesnoth/src/video.cpp Sun Jan 2 05:40:04 2005
@@ -1,4 +1,4 @@
-/* $Id: video.cpp,v 1.53 2004/11/18 22:00:13 ydirson Exp $ */
+/* $Id: video.cpp,v 1.54 2005/01/02 05:40:04 Sirp Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -318,8 +318,8 @@
return;
halo::render();
+ font::draw_floating_labels(frameBuffer);
events::raise_volatile_draw_event();
- font::draw_floating_labels(frameBuffer);
cursor::draw(frameBuffer);
if(update_all) {
::SDL_Flip(frameBuffer);
@@ -329,9 +329,9 @@
clear_updates();
- cursor::undraw(frameBuffer);
- font::undraw_floating_labels(frameBuffer);
+ cursor::undraw(frameBuffer);
events::raise_volatile_undraw_event();
+ font::undraw_floating_labels(frameBuffer);
halo::unrender();
}