Removed unnecessary (?) FIXME comment.
authorRicardo Cruz <rick2@aeiou.pt>
Thu, 29 Jul 2004 11:23:21 +0000 (11:23 +0000)
committerRicardo Cruz <rick2@aeiou.pt>
Thu, 29 Jul 2004 11:23:21 +0000 (11:23 +0000)
SVN-Revision: 1666

lib/video/surface.cpp

index a291932..b609f7a 100644 (file)
@@ -175,9 +175,6 @@ Surface::Surface(const std::string& file, int x, int y, int w, int h, bool use_a
 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)
   {