Sophie

Sophie

distrib > Mandriva > 2010.1 > i586 > media > contrib-updates-src > by-pkgid > 2c3f5384cc59e64dd0086c917789623e > files > 3

openarena-0.8.1-8mdv2010.2.src.rpm

--- openarena-engine-0.8.1/code/qcommon/vm.c~	2008-08-09 16:28:20.000000000 +0000
+++ openarena-engine-0.8.1/code/qcommon/vm.c	2011-04-24 08:54:23.000000000 +0000
@@ -757,14 +757,6 @@
                             args[4],  args[5],  args[6], args[7],
                             args[8],  args[9]);
 	} else {
-#if id386 // i386 calling convention doesn't need conversion
-#ifndef NO_VM_COMPILED
-		if ( vm->compiled )
-			r = VM_CallCompiled( vm, (int*)&callnum );
-		else
-#endif
-			r = VM_CallInterpreted( vm, (int*)&callnum );
-#else
 		struct {
 			int callnum;
 			int args[10];
@@ -783,7 +775,6 @@
 		else
 #endif
 			r = VM_CallInterpreted( vm, &a.callnum );
-#endif
 	}
 	--vm->callLevel;