Files
pkgsrc-ng/games/xdoom/patches/patch-ao
2013-09-26 17:14:40 +02:00

25 lines
560 B
Plaintext

$NetBSD: patch-ao,v 1.3 2010/02/22 21:58:47 wiz Exp $
--- linuxdoom-1.10/m_swap.c.orig Mon Dec 22 20:43:51 1997
+++ linuxdoom-1.10/m_swap.c Thu Feb 3 01:33:55 2000
@@ -31,8 +31,8 @@
#include "m_swap.h"
-// Not needed with big endian.
-#ifndef __BIG_ENDIAN__
+// Only needed with big endian.
+#ifdef __BIG_ENDIAN__
// Swap 16bit, that is, MSB and LSB byte.
unsigned short SwapSHORT(unsigned short x)
@@ -42,7 +42,7 @@
}
// Swapping 32bit.
-unsigned long SwapLONG( unsigned long x)
+unsigned int SwapLONG( unsigned int x)
{
return
(x>>24)