diff options
author | Unknown <m.hilbrunner@gmail.com> | 2017-12-05 15:41:38 +0100 |
---|---|---|
committer | Unknown <m.hilbrunner@gmail.com> | 2017-12-05 15:41:38 +0100 |
commit | fd1b94e307fadcb5a28d067e2bfac90fb8d55328 (patch) | |
tree | 2f0c70cd36791203d8bb72e787f29efaa44567fc /modules/opus | |
parent | 03c1b6be23009ca67eb585783ec0f76d9c535c88 (diff) | |
download | redot-engine-fd1b94e307fadcb5a28d067e2bfac90fb8d55328.tar.gz |
Improve slang, especially in user-visible parts
Diffstat (limited to 'modules/opus')
-rw-r--r-- | modules/opus/audio_stream_opus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/opus/audio_stream_opus.cpp b/modules/opus/audio_stream_opus.cpp index 06eab4c94d..5742102dae 100644 --- a/modules/opus/audio_stream_opus.cpp +++ b/modules/opus/audio_stream_opus.cpp @@ -62,7 +62,7 @@ int AudioStreamPlaybackOpus::_op_seek_func(void *_stream, opus_int64 _offset, in fa->seek_end(_offset); } break; default: { - ERR_PRINT("BUG, wtf was whence set to?\n"); + ERR_PRINT("Opus seek function failure: Unexpected value in _whence\n"); } } int ret = fa->eof_reached() ? -1 : 0; |