Minor clean up. Removes warnings of pointer cast during compile
Kartik Thakore [Wed, 4 Nov 2009 18:39:46 +0000 (13:39 -0500)]
src/Core/Events.xs

index 1e63a6e..56e49ce 100644 (file)
@@ -35,7 +35,7 @@ events_peep_events( events, numevents, action, mask )
        CODE:
                if(!(action & (SDL_ADDEVENT | SDL_PEEKEVENT | SDL_GETEVENT)))
                {
-                       croak('Value of \'action\' should be SDL_ADDEVENT, SDL_PEEKEVENT or SDL_GETEVENT.');
+                       croak("Value of 'action' should be SDL_ADDEVENT, SDL_PEEKEVENT or SDL_GETEVENT.");
                }
                RETVAL = SDL_PeepEvents(events,numevents,action,mask);
        OUTPUT: