CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Yann Dirson <[EMAIL PROTECTED]> 05/03/16 20:36:36
Modified files:
src : intro.cpp
Log message:
more cleanup of deps against display
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/intro.cpp.diff?tr1=1.69&tr2=1.70&r1=text&r2=text
Patches:
Index: wesnoth/src/intro.cpp
diff -u wesnoth/src/intro.cpp:1.69 wesnoth/src/intro.cpp:1.70
--- wesnoth/src/intro.cpp:1.69 Tue Mar 15 20:01:31 2005
+++ wesnoth/src/intro.cpp Wed Mar 16 20:36:36 2005
@@ -1,4 +1,4 @@
-/* $Id: intro.cpp,v 1.69 2005/03/15 20:01:31 ydirson Exp $ */
+/* $Id: intro.cpp,v 1.70 2005/03/16 20:36:36 ydirson Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -241,7 +241,7 @@
for(; start_word != end_word; ++start_word) {
word.append(start_word.substr().first,
start_word.substr().second);
}
- const SDL_Rect rect =
font::draw_text(NULL,screen.screen_area(),
+ const SDL_Rect rect =
font::draw_text(NULL,screen_area(),
font::SIZE_PLUS,font::NORMAL_COLOUR,
word, xpos, ypos, false);
@@ -258,7 +258,7 @@
std::string tmp;
tmp.append(itor.substr().first, itor.substr().second);
const SDL_Rect rect = font::draw_text(&screen.video(),
- screen.screen_area(),font::SIZE_PLUS,
+ screen_area(),font::SIZE_PLUS,
font::NORMAL_COLOUR,tmp,xpos,ypos,
false);