Update of /cvsroot/super-tux/supertux/lib/video
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28925/lib/video
Modified Files:
surface.cpp
Log Message:
properly implement invisible blocks
Index: surface.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/lib/video/surface.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- surface.cpp 20 Nov 2004 22:14:37 -0000 1.14
+++ surface.cpp 22 Nov 2004 23:47:49 -0000 1.15
@@ -66,8 +66,8 @@
SurfaceData::SurfaceData(Color top_gradient_, Color bottom_gradient_, int w_, int h_)
: type(GRADIENT), surface(0), use_alpha(false), w(w_), h(h_)
{
-top_gradient = top_gradient_;
-bottom_gradient = bottom_gradient_;
+ top_gradient = top_gradient_;
+ bottom_gradient = bottom_gradient_;
}
|