1
0
forked from 0ad/0ad

warning fix: remove redundant uint >= 0

This was SVN commit r1358.
This commit is contained in:
janwas 2004-11-19 22:40:27 +00:00
parent 4a9fc1e1d1
commit d5473db68e

View File

@ -409,7 +409,7 @@ static void al_src_free(ALuint al_src)
{ {
assert(alIsSource(al_src)); assert(alIsSource(al_src));
al_srcs[--al_src_used] = al_src; al_srcs[--al_src_used] = al_src;
assert(0 <= al_src_used && al_src_used < al_src_allocated); assert(al_src_used < al_src_allocated);
// don't compare against cap - it might have been // don't compare against cap - it might have been
// decreased to less than were in use. // decreased to less than were in use.
} }