From 6d72ef92045ab7d247e5b6f46547633a60dfc866 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Jun 29 2013 21:50:07 +0000 Subject: merged patch --- diff --git a/audacious-plugins-3.1-beta1-bigendian.patch b/audacious-plugins-3.1-beta1-bigendian.patch deleted file mode 100644 index 61c4353..0000000 --- a/audacious-plugins-3.1-beta1-bigendian.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -up audacious-plugins-3.4-beta1/src/xsf/desmume/SPU.c.bigendian audacious-plugins-3.4-beta1/src/xsf/desmume/SPU.c ---- audacious-plugins-3.4-beta1/src/xsf/desmume/SPU.c.bigendian 2013-05-22 16:32:52.000000000 +0200 -+++ audacious-plugins-3.4-beta1/src/xsf/desmume/SPU.c 2013-05-22 16:33:04.000000000 +0200 -@@ -563,7 +563,7 @@ static void decode_pcm16(SChannel *ch, s - for(oi = 0; oi < length; oi++) - { - #ifdef WORDS_BIGENDIAN -- ch->output = (s16)T1ReadWord((u8 *)ch->buf16, pos << 1); -+ ch->output = (s16)T1ReadWord((u8 *)ch->buf16, (int)pos << 1); - #else - ch->output = (s16)ch->buf16[(int)pos]; - #endif