diff --git a/sc2/src/sc2code/libs/sound/stream.c b/sc2/src/sc2code/libs/sound/stream.c index c944a84e2..a734dfc0f 100644 --- a/sc2/src/sc2code/libs/sound/stream.c +++ b/sc2/src/sc2code/libs/sound/stream.c @@ -130,7 +130,6 @@ StopStream (uint32 source) void PauseStream (uint32 source) { - // TODO: how to handle start_time soundSource[source].stream_should_be_playing = FALSE; TFBSound_SourcePause (soundSource[source].handle); } @@ -138,7 +137,6 @@ PauseStream (uint32 source) void ResumeStream (uint32 source) { - // TODO: how to handle start_time soundSource[source].stream_should_be_playing = TRUE; TFBSound_SourcePlay (soundSource[source].handle); }