Update of /cvsroot/super-tux/supertux/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30829/src
Modified Files:
menu.cpp
Log Message:
Replaced - by _ for the flickering input cursor.
This is now possible thankfull to Benjamin's fonts.
Index: menu.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/src/menu.cpp,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -d -r1.65 -r1.66
--- menu.cpp 30 Apr 2004 11:40:55 -0000 1.65
+++ menu.cpp 7 May 2004 00:22:28 -0000 1.66
@@ -214,7 +214,7 @@
char str[1024];
if(input_flickering)
- sprintf(str,"%s-",input);
+ sprintf(str,"%s_",input);
else
sprintf(str,"%s ",input);
|