Fix warning in debug build.

This commit is contained in:
Steve Checkoway
2006-06-16 07:06:39 +00:00
parent f94566100f
commit 8e6f2f6f5c
+1 -1
View File
@@ -634,7 +634,7 @@ float RageFastSin( float x )
{
// sin(x) == -sin(PI+x)
iSample -= ARRAYSIZE(table);
DEBUG_ASSERT( iSample>=0 && iSample<ARRAYSIZE(table) );
DEBUG_ASSERT( iSample>=0 && iSample<int(ARRAYSIZE(table)) );
fVal = -table[iSample];
}
else