diff options
Diffstat (limited to 'code/qcommon/vm_interpreted.c')
-rwxr-xr-x | code/qcommon/vm_interpreted.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/vm_interpreted.c b/code/qcommon/vm_interpreted.c index 2c0087f..e2d69a7 100755 --- a/code/qcommon/vm_interpreted.c +++ b/code/qcommon/vm_interpreted.c @@ -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; |