Skip to content

Commit

Permalink
Remove some debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
AstraLuma committed May 19, 2021
1 parent c9a5569 commit e316a73
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ppb/systems/sound.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ class Sound(assetlib.Asset):
# This is wrapping a ctypes.POINTER(Mix_Chunk)

def background_parse(self, data):
print("Sound.background_parse", repr(self), flush=True)
file = rw_from_object(io.BytesIO(data))
# ^^^^ is a pure-python emulation, does not need cleanup.
return mix_call(
Expand Down Expand Up @@ -85,7 +84,6 @@ def allocated_channels(self, value):
mix_call(Mix_AllocateChannels, value)

def __enter__(self):
print("SoundController.__enter__", repr(self), flush=True)
super().__enter__()
mix_call(
Mix_OpenAudio,
Expand Down

0 comments on commit e316a73

Please sign in to comment.