diff -r 6c47b9317d54 source/gameengine/Ketsji/KX_SoundActuator.cpp --- a/source/gameengine/Ketsji/KX_SoundActuator.cpp Wed Feb 01 22:47:10 2012 -0400 +++ b/source/gameengine/Ketsji/KX_SoundActuator.cpp Fri Feb 24 09:34:14 2012 -0400 @@ -335,9 +335,11 @@ m_handle->resume(); break; default: - play(); + break; } } + + play(); Py_RETURN_NONE; } diff -r 6c47b9317d54 source/gameengine/Ketsji/KX_SoundActuator.cpp --- a/source/gameengine/Ketsji/KX_SoundActuator.cpp Wed Feb 01 22:47:10 2012 -0400 +++ b/source/gameengine/Ketsji/KX_SoundActuator.cpp Fri Feb 24 09:38:21 2012 -0400 @@ -336,8 +336,13 @@ break; default: play(); + break; } } + else + { + play(); + } Py_RETURN_NONE; } diff -r 6c47b9317d54 source/gameengine/Ketsji/KX_SoundActuator.cpp --- a/source/gameengine/Ketsji/KX_SoundActuator.cpp Wed Feb 01 22:47:10 2012 -0400 +++ b/source/gameengine/Ketsji/KX_SoundActuator.cpp Fri Feb 24 09:38:57 2012 -0400 @@ -23,7 +23,7 @@ * * The Original Code is: all of this file. * - * Contributor(s): none yet. + * Contributor(s): Colin Nickerson http://www.wrenchproject.org * * ***** END GPL LICENSE BLOCK ***** * @@ -336,8 +336,13 @@ break; default: play(); + break; } } + else + { + play(); + } Py_RETURN_NONE; }