CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Yann Dirson <[EMAIL PROTECTED]> 05/06/22 23:30:19
Modified files:
src : font.hpp
Log message:
scale down fontsize in tinygui mode a bit since many dialogs cannot yet
cope with such large fontsizes; still need to fix at least the following
dialogs: attack, attack stats, objectives (see tutorial)
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/font.hpp.diff?tr1=1.58&tr2=1.59&r1=text&r2=text
Patches:
Index: wesnoth/src/font.hpp
diff -u wesnoth/src/font.hpp:1.58 wesnoth/src/font.hpp:1.59
--- wesnoth/src/font.hpp:1.58 Sat Jun 4 19:16:05 2005
+++ wesnoth/src/font.hpp Wed Jun 22 23:30:18 2005
@@ -1,4 +1,4 @@
-/* $Id: font.hpp,v 1.58 2005/06/04 19:16:05 ott Exp $ */
+/* $Id: font.hpp,v 1.59 2005/06/22 23:30:18 ydirson Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
@@ -54,7 +54,7 @@
// font sizes, to be made theme parameters
#ifdef USE_TINY_GUI
// this is not meant for normal play, just for checking other dimensions get
adapted accordingly
-const int SIZE_NORMAL = 10;
+const int SIZE_NORMAL = 9;
#else
const int SIZE_NORMAL = 14;
#endif