From e316a73760f508dd711a83d2bc70266e62ae6c17 Mon Sep 17 00:00:00 2001 From: Jamie Bliss Date: Tue, 18 May 2021 22:07:57 -0400 Subject: [PATCH] Remove some debugging --- ppb/systems/sound.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ppb/systems/sound.py b/ppb/systems/sound.py index df3ea56d..7c541cba 100644 --- a/ppb/systems/sound.py +++ b/ppb/systems/sound.py @@ -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( @@ -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,