mirror of
https://github.com/UberGames/ioef.git
synced 2024-11-24 05:01:40 +00:00
pass only 10 arguments. vm_* doesn't use more anyways.
This commit is contained in:
parent
3ce5d5dccd
commit
5f79f9958b
1 changed files with 2 additions and 2 deletions
|
@ -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[16];
|
||||
long args[10];
|
||||
int i;
|
||||
va_list ap;
|
||||
|
||||
|
@ -726,7 +726,7 @@ long QDECL VM_Call( vm_t *vm, long callnum, ... ) {
|
|||
// if we have a dll loaded, call it directly
|
||||
if ( vm->entryPoint ) {
|
||||
//rcg010207 - see dissertation at top of VM_DllSyscall() in this file.
|
||||
long args[16];
|
||||
long args[10];
|
||||
va_list ap;
|
||||
va_start(ap, callnum);
|
||||
for (i = 0; i < sizeof (args) / sizeof (args[i]); i++) {
|
||||
|
|
Loading…
Reference in a new issue