Skip to content

Commit

Permalink
curse you, semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
TurtleP committed Jul 21, 2024
1 parent ca153c5 commit 40ff82f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/modules/audio/wrap_Source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ int Wrap_Source::setLooping(lua_State* L)
auto* self = luax_checksource(L, 1);
bool looping = luax_checkboolean(L, 2);

luax_catchexcept(L, [&]() { self->setLooping(looping) });
luax_catchexcept(L, [&]() { self->setLooping(looping); });

return 0;
}
Expand Down

0 comments on commit 40ff82f

Please sign in to comment.