summaryrefslogtreecommitdiff
path: root/games/iourbanterror/files/patch-code-qcommon-vm_interpreted.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/iourbanterror/files/patch-code-qcommon-vm_interpreted.c')
-rw-r--r--games/iourbanterror/files/patch-code-qcommon-vm_interpreted.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/games/iourbanterror/files/patch-code-qcommon-vm_interpreted.c b/games/iourbanterror/files/patch-code-qcommon-vm_interpreted.c
deleted file mode 100644
index f13f60f01af3..000000000000
--- a/games/iourbanterror/files/patch-code-qcommon-vm_interpreted.c
+++ /dev/null
@@ -1,16 +0,0 @@
---- code/qcommon/vm_interpreted.c.orig 2016-03-31 19:41:05 UTC
-+++ code/qcommon/vm_interpreted.c
-@@ -458,11 +458,11 @@ nextInstruction2:
- goto nextInstruction2;
-
- case OP_STORE4:
-- *(int *)&image[ r1&(dataMask & ~3) ] = r0;
-+ *(int *)&image[ r1&(dataMask) ] = r0;
- opStack -= 2;
- goto nextInstruction;
- case OP_STORE2:
-- *(short *)&image[ r1&(dataMask & ~1) ] = r0;
-+ *(short *)&image[ r1&(dataMask) ] = r0;
- opStack -= 2;
- goto nextInstruction;
- case OP_STORE1: