aboutsummaryrefslogtreecommitdiffstats
path: root/code/game/q_shared.h
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-09-26 20:09:18 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-09-26 20:09:18 +0000
commitb05dd1308c95aa8819fa50aaefd7a8bdda741f4a (patch)
treeb7ea6c7ce8ccc9d06f079e2c4a21e40e745fc97f /code/game/q_shared.h
parent6addebda62ab0c65c7f587b2fef7fb22c3340d41 (diff)
downloadioquake3-aero-b05dd1308c95aa8819fa50aaefd7a8bdda741f4a.tar.gz
ioquake3-aero-b05dd1308c95aa8819fa50aaefd7a8bdda741f4a.zip
* Some FreeBSD cleanups
* Removed the remainder of the RPM stuff from the Makefile git-svn-id: svn://svn.icculus.org/quake3/trunk@113 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/game/q_shared.h')
-rw-r--r--code/game/q_shared.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/game/q_shared.h b/code/game/q_shared.h
index c3a803c..7ca448a 100644
--- a/code/game/q_shared.h
+++ b/code/game/q_shared.h
@@ -333,9 +333,9 @@ inline static float LittleFloat (const float l) { return FloatSwap(&l); }
#if !idppc
static short BigShort( short l) { return ShortSwap(l); }
#define LittleShort
-static int BigLong(int l) { LongSwap(l); }
+static int BigLong(int l) { return LongSwap(l); }
#define LittleLong
-static float BigFloat(const float l) { FloatSwap(&l); }
+static float BigFloat(const float l) { return FloatSwap(&l); }
#define LittleFloat
#else
#define BigShort