Removed ~~ for 5.8.x support
[sdlgit/SDL_perl.git] / lib / SDL / Palette.pm
index 8f388af..df99f3f 100644 (file)
@@ -1,12 +1,41 @@
+#!/usr/bin/env perl
 #
-#      Palette.pm
+# Palette.pm
 #
-#      a module for manipulating SDL_Palette *
+# Copyright (C) 2005 David J. Goehrig <dgoehrig@cpan.org>
 #
-#      Copyright (C) 2000,2002 David J. Goehrig
+# ------------------------------------------------------------------------------
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2.1 of the License, or (at your option) any later version.
+# 
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+# Lesser General Public License for more details.
+# 
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+#
+# ------------------------------------------------------------------------------
+#
+# Please feel free to send questions, suggestions or improvements to:
+#
+#      David J. Goehrig
+#      dgoehrig@cpan.org
+#
+
+# NB: there is no palette destructor because most of the time the 
+# palette will be owned by a surface, so any palettes you create 
+# with new, won't be destroyed until the program ends!
 
 package SDL::Palette;
 use strict;
+use warnings;
+use Carp;
 
 # NB: there is no palette destructor because most of the time the 
 # palette will be owned by a surface, so any palettes you create 
@@ -23,6 +52,7 @@ sub new {
        } else { 
                $self = \SDL::NewPalette(256); 
        }
+       croak SDL::GetError() unless $$self;
        bless $self, $class;
        return $self;
 }