missaligned arrays, as nick requested

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3082 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
michael 2001-11-23 12:00:40 +00:00
parent a1c02f562c
commit 4a06953ed4
1 changed files with 2 additions and 3 deletions

View File

@ -21,7 +21,6 @@
//#define ARR_SIZE 100000
#define ARR_SIZE (1024*768*2)
#ifdef HAVE_MGA
#include "../drivers/mga_vid.h"
@ -107,9 +106,9 @@ int main( void )
mga_init();
marr1 = &frame[3];
#else
marr1 = &arr1[0];
marr1 = &arr1[3];
#endif
marr2 = &arr2[0];
marr2 = &arr2[9];
for(i=0; i<ARR_SIZE; i++) marr1[i] = marr2[i] = i;