# HG changeset patch # User Eric Wing # Date 1301439302 25200 # Node ID 71fce7ac6e133d960e6a734a7df3e53e90e53297 # Parent ad4eb4330fb060b859706ac83228f4633f9f00d3 Bug fix: Boolean should have been flipped...causes deadlock. diff -r ad4eb4330fb0 -r 71fce7ac6e13 ALmixer.c --- a/ALmixer.c Tue Mar 29 11:16:39 2011 -0700 +++ b/ALmixer.c Tue Mar 29 15:55:02 2011 -0700 @@ -7374,7 +7374,7 @@ /* Is locking really necessary here? */ /* SDL_LockMutex(s_simpleLock); */ - g_StreamThreadEnabled = AL_TRUE; + g_StreamThreadEnabled = AL_FALSE; /* SDL_UnlockMutex(s_simpleLock); */ SDL_WaitThread(Stream_Thread_global, NULL);