Fix an unresolved symbol (cK is this fix what you intended?). Feh segv's trying

to load a .ani file on big endian systems, I'll see if I can track it down.


SVN revision: 6173
This commit is contained in:
Nathan Ingersoll 2002-04-24 20:24:35 +00:00
parent 2088503270
commit aadbcd70e6
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
(((x) & 0xff000000 ) >> 24))
#ifdef WORDS_BIGENDIAN
#define ENDIAN_SWAP(x) (SWAP(x))
#define ENDIAN_SWAP(x) (SWAP32(x))
#else
#define ENDIAN_SWAP(x) (x)
#endif