Skip to content

Commit

Permalink
Update MusicBeatState.hx
Browse files Browse the repository at this point in the history
  • Loading branch information
Hackx2 committed Mar 3, 2025
1 parent 511a7fb commit ab8eaee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/funkin/backend/system/MusicBeatState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ abstract class MusicBeatState extends FlxState

if (_shaderGroup != null)
for (shader in _shaderGroup)
try{shader.update(elapsed);}catch(err)Logs.trace('err', RED);
try{
shader.update(elapsed);
}catch(err:Dynamic)
Logs.trace(err, RED);

if (oldStep != curStep)
{
Expand Down

0 comments on commit ab8eaee

Please sign in to comment.