From 93bfaf965f8c45889bd8f625db8b3f0ca0b50560 Mon Sep 17 00:00:00 2001 From: gewlitys Date: Mon, 7 Apr 2003 00:17:31 +0000 Subject: [PATCH] removed some redundant comments git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@907 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/sound/stream.c | 2 -- 1 file changed, 2 deletions(-) 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); }