SDL::GetError to SDL::geterror in lib/SDL/App.pm
Kartik Thakore [Thu, 29 Oct 2009 17:11:43 +0000 (13:11 -0400)]
lib/SDL/App.pm

index a3b0cb6..542b79f 100644 (file)
@@ -113,7 +113,7 @@ sub new {
        }
 
        my $self = SDL::SetVideoMode($w,$h,$d,$f)
-               or croak SDL::GetError();
+               or croak SDL::geterror();
        
        if ($ic and -e $ic) {
           my $icon = new SDL::Surface -name => $ic;
@@ -157,7 +157,7 @@ sub ticks {
 }
 
 sub error {
-       return SDL::GetError();
+       return SDL::geterror();
 }
 
 sub warp ($$$) {