fixed alignedMemCpyNoOpt

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1851 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-11-24 11:29:46 +00:00
parent 72c230820c
commit 59544b109e
2 changed files with 10 additions and 1 deletions

View File

@@ -83,7 +83,7 @@ void alignedFreeFrames( sampleFrame * _buf )
// slow fallback
void alignedMemCpyNoOpt( void * RP _dst, const void * RP _src, int _size )
{
const int s = _size / ( sizeof( int ) * 16 );
const int s = _size / sizeof( int );
const int * RP src = (const int *) _src;
int * RP dst = (int *) _dst;
for( int i = 0; i < s; )