Ludwig's 1st diff: Some 64bit fixes for x86_64. Also fixes Makefile build.
This commit is contained in:
parent
59cce31e75
commit
f46ede91fb
23 changed files with 150 additions and 84 deletions
|
@ -479,7 +479,7 @@ nextInstruction2:
|
|||
|
||||
src = (int *)&image[ r0&dataMask ];
|
||||
dest = (int *)&image[ r1&dataMask ];
|
||||
if ( ( (int)src | (int)dest | count ) & 3 ) {
|
||||
if ( ( (long)src | (long)dest | count ) & 3 ) {
|
||||
Com_Error( ERR_DROP, "OP_BLOCK_COPY not dword aligned" );
|
||||
}
|
||||
count >>= 2;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue