pingus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pingus-CVS] CVS: Games/Pingus/src console.cxx,1.8,1.9


From: grumbel
Subject: [Pingus-CVS] CVS: Games/Pingus/src console.cxx,1.8,1.9
Date: 5 Sep 2002 14:56:18 -0000

Update of /usr/local/cvsroot/Games/Pingus/src
In directory dark:/tmp/cvs-serv4791

Modified Files:
        console.cxx 
Log Message:
- a micro fix for the console background
PS: console doesn't work correctly, line-wrapping to early and current line 
isn't shown completly 

Index: console.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/console.cxx,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- console.cxx 22 Aug 2002 02:24:59 -0000      1.8
+++ console.cxx 5 Sep 2002 14:56:16 -0000       1.9
@@ -116,7 +116,7 @@
   return buffer;
 }
 
-Console::Console() : ostream (&streambuf)
+Console::Console() : ostream (&streambuf) // std:: is missing here since Win32 
doesn't like it
 {
   is_init = false;
   is_visible = false;
@@ -159,7 +159,7 @@
     CL_Display::get_height() - (font->get_height() * (number_of_lines + 3));
 
   // The background of the console
-  CL_Display::fill_rect(0, start_y_pos,
+  CL_Display::fill_rect(0, start_y_pos - 15,
                        CL_Display::get_width(),
                        CL_Display::get_height(),
                        0.0, 0.0, 0.0, 0.5);





reply via email to

[Prev in Thread] Current Thread [Next in Thread]