ARRAYSIZE -> ARRAYLEN.

This commit is contained in:
Steve Checkoway
2007-06-09 07:53:22 +00:00
parent f1bc9cc1cd
commit acb030f229
5 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -75,7 +75,7 @@ bool RageSoundReader_Preload::Open( RageSoundReader *pSource )
return false; /* Don't bother trying to preload it. */
float buffer[1024];
int iCnt = pSource->Read( buffer, ARRAYSIZE(buffer) / m_iChannels );
int iCnt = pSource->Read( buffer, ARRAYLEN(buffer) / m_iChannels );
if( iCnt == END_OF_FILE )
break;