diff options
Diffstat (limited to 'src/lua/audio/luaopen_audio.cpp')
-rw-r--r-- | src/lua/audio/luaopen_audio.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/lua/audio/luaopen_audio.cpp b/src/lua/audio/luaopen_audio.cpp index 40bfb04..731e4d9 100644 --- a/src/lua/audio/luaopen_audio.cpp +++ b/src/lua/audio/luaopen_audio.cpp @@ -84,16 +84,15 @@ namespace lua } static const luaL_Reg f[] = { - {"init", l_init}, - {"play", l_play }, - {"stop", l_stop}, - {"pause", l_pause}, - {"resume", l_resume}, - {"setVolume",l_setVolume}, - {"Source", l_newSource}, - // - {"destroy",l_destroy}, - {0, 0} + { "init", l_init }, + { "play", l_play }, + { "stop", l_stop }, + { "pause", l_pause }, + { "resume", l_resume }, + { "setVolume",l_setVolume }, + { "Source", l_newSource }, + { "destroy", l_destroy }, + { 0, 0 } }; extern int luaopen_Source(lua_State* L); |