fixes to compile/share more code between SPU and PPU

This commit is contained in:
ejcoumans
2008-02-01 03:35:54 +00:00
parent 1cdd5bf67f
commit 5399a9ae8c
7 changed files with 9 additions and 9 deletions

View File

@@ -9,7 +9,7 @@
template<class T, int size>
class DoubleBuffer
{
#if defined(__CELLOS_LV2__) || defined(USE_LIBSPE2)
#if defined(__SPU__) || defined(USE_LIBSPE2)
ATTRIBUTE_ALIGNED128( T m_buffer0[size] ) ;
ATTRIBUTE_ALIGNED128( T m_buffer1[size] ) ;
#else