check for zero loop points is useless

git-svn-id: https://vgmstream.svn.sourceforge.net/svnroot/vgmstream@276 51a99a44-fe44-0410-b1ba-c3e57ba2b86b
This commit is contained in:
halleyscometsw 2008-07-02 21:44:23 +00:00
parent 918c6a1e5d
commit b95f41a330

View File

@ -251,7 +251,7 @@ VGMSTREAM * init_vgmstream_aifc(STREAMFILE *streamFile) {
* will become apparent.
* We shouldn't have a loop point that overflows an int32_t
* anyway. */
if (loop_start >= 0 && loop_end >= 0) loop_flag = 1;
loop_flag = 1;
if (loop_start==loop_end) loop_flag = 0;
}
}