Fixed up the test for video_set_colors
[sdlgit/SDL_perl.git] / lib / SDL.pm
index 11c5ea0..094dd12 100644 (file)
@@ -54,7 +54,7 @@ sub import {
   $self->export_to_level(1, @_);
   SDL::Constants->export_to_level(1);
 }
-$VERSION = '2.2.3.1';
+$VERSION = '2.3';
 
 print "$VERSION" if (defined($ARGV[0]) && ($ARGV[0] eq '--SDLperl'));
 
@@ -118,8 +118,11 @@ per class basis.
        Nick: nferraz
        Name: Nelson Ferraz
 
-       Nice: acme
+       Nick: acme
        Name: Leon Brocard
+       
+       Nick: FROGGS
+       Name: Tobias Leich
 
 =head2 Maintainance 
        
@@ -151,30 +154,30 @@ Use the SDLPerl executable made in the bundle and call your scripts
 
 As with the C language API, SDL_perl initializes the SDL environment through
 the C<SDL::Init> subroutine.  This routine takes a mode flag constructed through
-the bitwise OR product of the following functions:  
+the bitwise OR product of the following constants:
 
 =over 4
 
 =item *
-INIT_AUDIO()
+INIT_AUDIO
 
 =item *
-INIT_VIDEO()
+INIT_VIDEO
 
 =item *
-INIT_CDROM()
+INIT_CDROM
 
 =item *
-INIT_EVERYTHING()
+INIT_EVERYTHING
 
 =item *
-INIT_NOPARACHUTE() 
+INIT_NOPARACHUTE
 
 =item *
-INIT_JOYSTICK()
+INIT_JOYSTICK
 
 =item *
-INIT_TIMER()
+INIT_TIMER
 
 =back