summaryrefslogtreecommitdiff
path: root/src/libxineadec
diff options
context:
space:
mode:
authorAndre Pang <athp@users.sourceforge.net>2004-12-12 06:55:58 +0000
committerAndre Pang <athp@users.sourceforge.net>2004-12-12 06:55:58 +0000
commit1de00c1f9d0f1eba90be53b8dd9635b79b68dc2a (patch)
tree057da9b98c78a90e2a4446ab56e413c1479ae5ac /src/libxineadec
parentf5e91a956b0df782bbdfb23beb319846ca2ebe4f (diff)
downloadxine-lib-1de00c1f9d0f1eba90be53b8dd9635b79b68dc2a.tar.gz
xine-lib-1de00c1f9d0f1eba90be53b8dd9635b79b68dc2a.tar.bz2
Code cleanups and elimination of some compiler warnings; patch courtesy of AL13N
CVS patchset: 7230 CVS date: 2004/12/12 06:55:58
Diffstat (limited to 'src/libxineadec')
-rw-r--r--src/libxineadec/nosefart/nes_apu.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/libxineadec/nosefart/nes_apu.c b/src/libxineadec/nosefart/nes_apu.c
index 162bcebbd..525d103b1 100644
--- a/src/libxineadec/nosefart/nes_apu.c
+++ b/src/libxineadec/nosefart/nes_apu.c
@@ -20,7 +20,7 @@
** nes_apu.c
**
** NES APU emulation
-** $Id: nes_apu.c,v 1.2 2003/08/25 21:51:43 f1rmb Exp $
+** $Id: nes_apu.c,v 1.3 2004/12/12 06:55:59 athp Exp $
*/
#include <string.h>
@@ -102,12 +102,12 @@ const int dmc_clocks[16] =
/* ratios of pos/neg pulse for rectangle waves */
static const int duty_lut[4] = { 2, 4, 8, 12 };
-
+#if 0 /* unused */
static void apu_setcontext(apu_t *src_apu)
{
apu = src_apu;
}
-
+#endif
/*
** Simple queue routines
@@ -1154,6 +1154,9 @@ int32 apu_getcyclerate(void)
/*
** $Log: nes_apu.c,v $
+** Revision 1.3 2004/12/12 06:55:59 athp
+** Code cleanups and elimination of some compiler warnings; patch courtesy of AL13N
+**
** Revision 1.2 2003/08/25 21:51:43 f1rmb
** Reduce GCC verbosity (various prototype declaration fixes). ffmpeg, wine and fft*post are untouched (fft: for now).
**