Avoid non-ASCII UTF-8 in message box text - SDL's X11 backend for message boxes doesn't properly support it yet (https://bugzilla.libsdl.org/show_bug.cgi?id=1658).

This commit is contained in:
Alex Szpakowski
2015-03-17 11:54:52 -03:00
parent d982f02634
commit 4a8e5bd4db
3 changed files with 3 additions and 4 deletions
@@ -241,7 +241,7 @@ bool CoreAudioDecoder::seek(float s)
bool CoreAudioDecoder::rewind()
{
OSStatus err = ExtAudioFileSeek(extAudioFile, 0);
OSStatus err = ExtAudioFileSeek(extAudioFile, 0);
if (err == noErr)
{