metaspu: make GetAlignedBufferSize static

This commit is contained in:
riccardom 2012-03-17 19:56:32 +00:00
parent d6935d07f7
commit b2467a6032
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ StereoOut32* SndBuffer::sndTempBuffer = NULL;
StereoOut16* SndBuffer::sndTempBuffer16 = NULL;
int SndBuffer::sndTempProgress = 0;
int GetAlignedBufferSize( int comp )
static int GetAlignedBufferSize( int comp )
{
return (comp + SndOutPacketSize-1) & ~(SndOutPacketSize-1);
}