summaryrefslogtreecommitdiff
path: root/src/qcommon/vm_x86.c
diff options
context:
space:
mode:
authorThilo Schulz <arny@ats.s.bawue.de>2011-06-27 20:22:32 +0000
committerTim Angus <tim@ngus.net>2013-01-10 21:52:54 +0000
commit2778b5b75f0be066b998be4c5f1d93bea40aceb3 (patch)
tree0fdb5f17de7f814a4acfb73224c2df5056a582d0 /src/qcommon/vm_x86.c
parent7c04bfe3152507691e617bf1ceb22908921a7157 (diff)
- Fix opStack size for vm_x86.c - Change opStack alignment to 16 for vm_x86_64.c
Diffstat (limited to 'src/qcommon/vm_x86.c')
-rw-r--r--src/qcommon/vm_x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/vm_x86.c b/src/qcommon/vm_x86.c
index 91ab5cc2..c5dcfddd 100644
--- a/src/qcommon/vm_x86.c
+++ b/src/qcommon/vm_x86.c
@@ -1715,7 +1715,7 @@ This function is called directly by the generated code
int VM_CallCompiled(vm_t *vm, int *args)
{
- byte stack[OPSTACK_SIZE * 4 + 15];
+ byte stack[OPSTACK_SIZE + 15];
void *entryPoint;
int programCounter;
int programStack, stackOnEntry;