some small fixes for mistakes I made and that Trickster noticed.

git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1748 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
groogy 2010-12-05 15:40:24 +00:00
parent 20e308466a
commit 8199fa0379
4 changed files with 17 additions and 32 deletions

View file

@ -75,7 +75,7 @@ static VALUE Clock_InitializeCopy( VALUE self, VALUE aSource )
*
* The clock starts automatically after being constructed.
*/
static VALUE Clock_New( int argc, VALUE *args VALUE aKlass )
static VALUE Clock_New( int argc, VALUE *args, VALUE aKlass )
{
sf::Clock *object = new sf::Clock();
VALUE rbData = Data_Wrap_Struct( aKlass, 0, Clock_Free, object );