Added getters to VideoInfo struct
[sdlgit/SDL_perl.git] / lib / SDL.pm
index 8e7771a..094dd12 100644 (file)
@@ -54,7 +54,7 @@ sub import {
   $self->export_to_level(1, @_);
   SDL::Constants->export_to_level(1);
 }
-$VERSION = '2.2.3';
+$VERSION = '2.3';
 
 print "$VERSION" if (defined($ARGV[0]) && ($ARGV[0] eq '--SDLperl'));
 
@@ -118,10 +118,15 @@ per class basis.
        Nick: nferraz
        Name: Nelson Ferraz
 
+       Nick: acme
+       Name: Leon Brocard
+       
+       Nick: FROGGS
+       Name: Tobias Leich
+
 =head2 Maintainance 
        
        Nick: kthakore
-
        Name: Kartik Thakore
 
 =head1 MacOSX Experimental Usage
@@ -130,7 +135,7 @@ Please get libsdl packages from Fink
        
        perl Build.PL
        perl Build test
-       perl Build Bundle
+       perl Build bundle
        perl Build install
 
 =head2 Running SDL Perl Scripts in MacOSX
@@ -149,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