diff options
author | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-02 21:45:48 +0000 |
---|---|---|
committer | ludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-11-02 21:45:48 +0000 |
commit | 05f81cf9ddf76aad655e7045948fbf59e23a73cf (patch) | |
tree | c355db9c258a86cccd7fabd84c5942ee869c84da | |
parent | 7904f5ba46346fae2e252bfc3508dd19517ed65f (diff) | |
download | ioquake3-aero-05f81cf9ddf76aad655e7045948fbf59e23a73cf.tar.gz ioquake3-aero-05f81cf9ddf76aad655e7045948fbf59e23a73cf.zip |
actually when calling from the vm to the engine there are more than 10
arguments
git-svn-id: svn://svn.icculus.org/quake3/trunk@235 edf5b092-35ff-0310-97b2-ce42778d08ea
-rw-r--r-- | code/qcommon/vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/vm.c b/code/qcommon/vm.c index 7e9142e..86cfeb7 100644 --- a/code/qcommon/vm.c +++ b/code/qcommon/vm.c @@ -332,7 +332,7 @@ Dlls will call this directly long QDECL VM_DllSyscall( long arg, ... ) { #if ((defined __GNUC__) && !(defined __i386__)) // rcg010206 - see commentary above - long args[10]; + long args[16]; int i; va_list ap; |