Browse Source

fix an "unused parameter" compiler warning

Bill Meltsner 14 years ago
parent
commit
be5cb1696b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/modules/event/sdl/wrap_Event.cpp

+ 1 - 1
src/modules/event/sdl/wrap_Event.cpp

@@ -177,7 +177,7 @@ namespace sdl
 		return 1;
 	}
 
-	int w_clear(lua_State * L)
+	int w_clear(lua_State *)
 	{
 		instance->clear();
 		return 0;