Update of /cvsroot/super-tux/supertux/lib/video
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16463/lib/video
Modified Files:
surface.cpp
Log Message:
Removed unnecessary (?) FIXME comment.
Index: surface.cpp
===================================================================
RCS file: /cvsroot/super-tux/supertux/lib/video/surface.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- surface.cpp 28 Jul 2004 22:23:23 -0000 1.5
+++ surface.cpp 29 Jul 2004 11:23:21 -0000 1.6
@@ -175,9 +175,6 @@
Surface::Surface(Color top_background, Color bottom_background, int w_, int h_)
: data(top_background, bottom_background, w_, h_), w(0), h(0)
{
- // FIXME: Gradient surfaces currently don't accept width/height
- // If nonzero values are passed to data.create(), supertux
- // crashes.
impl = data.create();
if (impl)
{
|