Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 147302
Collapse All | Expand All

(-)tremulous-1.1.0.orig/src/qcommon/vm_interpreted.c (-1 / +3 lines)
Lines 494-503 Link Here
494
494
495
				src = (int *)&image[ r0&dataMask ];
495
				src = (int *)&image[ r0&dataMask ];
496
				dest = (int *)&image[ r1&dataMask ];
496
				dest = (int *)&image[ r1&dataMask ];
497
				if ( ( (intptr_t)src | (intptr_t)dest | count ) & 3 ) {
497
// avoid flooding console
498
/*				if ( ( (intptr_t)src | (intptr_t)dest | count ) & 3 ) {
498
					// happens in westernq3
499
					// happens in westernq3
499
					Com_Printf( S_COLOR_YELLOW "Warning: OP_BLOCK_COPY not dword aligned\n");
500
					Com_Printf( S_COLOR_YELLOW "Warning: OP_BLOCK_COPY not dword aligned\n");
500
				}
501
				}
502
*/
501
				count >>= 2;
503
				count >>= 2;
502
				for ( i = count-1 ; i>= 0 ; i-- ) {
504
				for ( i = count-1 ; i>= 0 ; i-- ) {
503
					dest[i] = src[i];
505
					dest[i] = src[i];

Return to bug 147302