aboutsummaryrefslogtreecommitdiffstats
path: root/code/qcommon
diff options
context:
space:
mode:
authorludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-03-02 17:29:35 +0000
committerludwig <ludwig@edf5b092-35ff-0310-97b2-ce42778d08ea>2009-03-02 17:29:35 +0000
commit2e7d96f1e3505ed22b26b34138b3181ef64b87f8 (patch)
tree663f586bef9b5e177c04669f4dcefa7b7e54fb32 /code/qcommon
parentad4ae570147ece9fe05106ee668dcd11b8d21480 (diff)
downloadioquake3-aero-2e7d96f1e3505ed22b26b34138b3181ef64b87f8.tar.gz
ioquake3-aero-2e7d96f1e3505ed22b26b34138b3181ef64b87f8.zip
qcommon: vm: sparc, like 386, doesn't need var-args conversion.
Signed-off-by: David S. Miller <davem@davemloft.net> git-svn-id: svn://svn.icculus.org/quake3/trunk@1502 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/qcommon')
-rw-r--r--code/qcommon/vm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/qcommon/vm.c b/code/qcommon/vm.c
index dceec4a..a62377d 100644
--- a/code/qcommon/vm.c
+++ b/code/qcommon/vm.c
@@ -765,7 +765,7 @@ intptr_t QDECL VM_Call( vm_t *vm, int callnum, ... ) {
args[4], args[5], args[6], args[7],
args[8], args[9]);
} else {
-#if id386 // i386 calling convention doesn't need conversion
+#if id386 || idsparc // i386/sparc calling convention doesn't need conversion
#ifndef NO_VM_COMPILED
if ( vm->compiled )
r = VM_CallCompiled( vm, (int*)&callnum );