diff options
| author | Ruslan Mustakov | 2017-10-13 12:40:19 +0700 |
|---|---|---|
| committer | Ruslan Mustakov | 2017-10-13 12:40:19 +0700 |
| commit | 6106fd88d415c2889d3b64dcf1b0762eda2df562 (patch) | |
| tree | 8e50985d24b12034d083df606026cc0965a10bb7 /modules | |
| parent | 8bdb04c839f475a2bb668b2b0032397c1b691394 (diff) | |
| download | godot-6106fd88d415c2889d3b64dcf1b0762eda2df562.tar.gz godot-6106fd88d415c2889d3b64dcf1b0762eda2df562.tar.zst godot-6106fd88d415c2889d3b64dcf1b0762eda2df562.zip | |
Remove junk output
Remove several prints that were added for engine debugging, but are
of no use to the end user, and only pollute the editor and game logs.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/stb_vorbis/audio_stream_ogg_vorbis.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/modules/stb_vorbis/audio_stream_ogg_vorbis.cpp b/modules/stb_vorbis/audio_stream_ogg_vorbis.cpp index 27ea31078..5c252bda8 100644 --- a/modules/stb_vorbis/audio_stream_ogg_vorbis.cpp +++ b/modules/stb_vorbis/audio_stream_ogg_vorbis.cpp @@ -129,7 +129,6 @@ AudioStreamPlaybackOGGVorbis::~AudioStreamPlaybackOGGVorbis() { Ref<AudioStreamPlayback> AudioStreamOGGVorbis::instance_playback() { Ref<AudioStreamPlaybackOGGVorbis> ovs; - printf("instance at %p, data %p\n", this, data); ERR_FAIL_COND_V(data == NULL, ovs); @@ -208,8 +207,6 @@ void AudioStreamOGGVorbis::set_data(const PoolVector<uint8_t> &p_data) { break; } } - - printf("create at %p, data %p\n", this, data); } PoolVector<uint8_t> AudioStreamOGGVorbis::get_data() const { |
