Skip to content

Commit

Permalink
remove unnecessary "*"
Browse files Browse the repository at this point in the history
  • Loading branch information
SatyrDiamond committed Nov 2, 2024
1 parent b0a4582 commit 849700e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/output/soundbridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,9 @@ def make_vst2(convproj_obj, plugin_obj, issynth, pluginid, sb_track):
statewriter = bytewriter.bytewriter()
statewriter.raw(b'CcnK')
statewriter.raw(b'\x14\x00\x00\x00')
statewriter.raw(b'\x00\x00\x00\x00'*1)
statewriter.raw(b'\x00\x00\x00\x00')
statewriter.raw(disabledbyte)
statewriter.raw(b'\x00\x00\x00\x00'*1)
statewriter.raw(b'\x00\x00\x00\x00')
statewriter.raw(b'CcnK')
statewriter.raw(b'\x00\x00\x00\x00')

Expand Down

0 comments on commit 849700e

Please sign in to comment.