removed some redundant comments

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@907 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
gewlitys
2003-04-07 00:17:31 +00:00
parent bfd8c21110
commit 93bfaf965f
-2
View File
@@ -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);
}