ARRAYSIZE -> ARRAYLEN

This commit is contained in:
Steve Checkoway
2007-06-09 08:26:56 +00:00
parent 9779519bfd
commit c8a83abb3d
+1 -1
View File
@@ -413,7 +413,7 @@ bool RunTests( RageSoundReader *snd, const TestFile &tf )
while(1)
{
float buf[4096];
int got = snd->Read( buf, ARRAYSIZE(buf) / snd->GetNumChannels() );
int got = snd->Read( buf, ARRAYLEN(buf) / snd->GetNumChannels() );
if( got == RageSoundReader::END_OF_FILE )
break;
ASSERT( got >= 0 );