Skip to content

Commit

Permalink
Remove an unused variable
Browse files Browse the repository at this point in the history
Thanks to @matthiaskrgr for noticing.
  • Loading branch information
jyrkive committed Apr 29, 2017
1 parent cdca6b7 commit 9edf49e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripting/lua_audio.cpp
Expand Up @@ -137,7 +137,7 @@ static int intf_music_play(lua_State* L) {
return 0;
}

static int intf_music_next(lua_State* L) {
static int intf_music_next(lua_State*) {
size_t n = sound::get_num_tracks();
if(n > 0) {
sound::play_track(n);
Expand Down

0 comments on commit 9edf49e

Please sign in to comment.