Mercurial > audlegacy
changeset 1515:56818382846e trunk
[svn] Endianness fix by Luca Barbato <lu_zero@gentoo.org>.
author | chainsaw |
---|---|
date | Mon, 07 Aug 2006 04:19:43 -0700 |
parents | 50fa1e16ba5d |
children | 3483fb26b9fb |
files | ChangeLog Plugins/Input/sexypsf/PsxMem.h |
diffstat | 2 files changed, 12 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Aug 07 02:26:07 2006 -0700 +++ b/ChangeLog Mon Aug 07 04:19:43 2006 -0700 @@ -1,3 +1,12 @@ +2006-08-07 09:26:07 +0000 William Pitcock <nenolod@nenolod.net> + revision [1942] + - indentation cleanups + + + Changes: Modified: + +5 -5 trunk/Plugins/General/notify/notify.c + + 2006-08-07 07:39:19 +0000 Yoshiki Yazawa <yaz@cc.rim.or.jp> revision [1940] - to prevent SIGSEGV
--- a/Plugins/Input/sexypsf/PsxMem.h Mon Aug 07 02:26:07 2006 -0700 +++ b/Plugins/Input/sexypsf/PsxMem.h Mon Aug 07 04:19:43 2006 -0700 @@ -16,10 +16,12 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "config.h" + #ifndef __PSXMEMORY_H__ #define __PSXMEMORY_H__ -#ifdef MSB_FIRST +#ifdef WORDS_BIGENDIAN static INLINE u16 BFLIP16(u16 x) { return( ((x>>8)&0xFF)| ((x&0xFF)<<8) );