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:
@@ -1,3 +1,12 @@
|
||||
2008-11-24 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
|
||||
|
||||
* src/core/basic_ops.cpp:
|
||||
fixed alignedMemCpyNoOpt
|
||||
|
||||
* src/core/audio/audio_alsa.cpp:
|
||||
fixed pointer additions leading to horrible noises under certain
|
||||
circumstances
|
||||
|
||||
2008-11-23 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
|
||||
|
||||
* src/core/basic_ops.cpp:
|
||||
|
||||
@@ -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; )
|
||||
|
||||
Reference in New Issue
Block a user