From: Kartik Thakore Date: Tue, 4 Aug 2009 04:22:19 +0000 (-0400) Subject: Typo with - sign in constant. Causing constants to not be loaded correctly X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=686ed2cdbc61f88e65571b024b75ec95e2ff7b32;p=sdlgit%2FSDL_perl.git Typo with - sign in constant. Causing constants to not be loaded correctly --- diff --git a/lib/SDL/Constants.pm b/lib/SDL/Constants.pm index 2ddc6dc..c8445f0 100644 --- a/lib/SDL/Constants.pm +++ b/lib/SDL/Constants.pm @@ -330,7 +330,7 @@ sub MIX_FADING_IN {2} sub MIX_FADING_OUT {1} sub MIX_MAX_VOLUME {128} sub MIX_NO_FADING {0} -sub MIX_CHANNEL_POST {-2} +sub MIX_CHANNEL_POST {2} sub SDLK_0 {48} sub SDLK_1 {49} sub SDLK_2 {50}