diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-12-01 18:01:43 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2005-12-01 18:01:43 +0000 |
commit | 0e8301fcb4fc0e69cc759b9c3c7a802067fd1f1d (patch) | |
tree | 717e3adda39bd16279ac5bf20a30dd4b1cc3feee | |
parent | 02470e9506b3d4c51dfdab407968600b486e7e54 (diff) | |
download | ioquake3-aero-0e8301fcb4fc0e69cc759b9c3c7a802067fd1f1d.tar.gz ioquake3-aero-0e8301fcb4fc0e69cc759b9c3c7a802067fd1f1d.zip |
* Fix a warning on non-PPC builds
git-svn-id: svn://svn.icculus.org/quake3/trunk@399 edf5b092-35ff-0310-97b2-ce42778d08ea
-rw-r--r-- | code/unix/unix_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/code/unix/unix_main.c b/code/unix/unix_main.c index b673ca5..f347027 100644 --- a/code/unix/unix_main.c +++ b/code/unix/unix_main.c @@ -380,9 +380,9 @@ static void illegal_instruction(int sig) static void Sys_DetectAltivec(void) { // Only detect if user hasn't forcibly disabled it. - qboolean altivec = qfalse; if (com_altivec->integer) { #if idppc_altivec + qboolean altivec = qfalse; #ifdef MACOS_X long feat = 0; OSErr err = Gestalt(gestaltPowerPCProcessorFeatures, &feat); |