From ddd99692bc3e1246c2ccb5e551512f35b4f7959a Mon Sep 17 00:00:00 2001 From: notaz Date: Wed, 21 Nov 2012 02:38:10 +0200 Subject: plugins: drop arch filename extensions they do more harm than good --- plugins/spunull/Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'plugins/spunull') diff --git a/plugins/spunull/Makefile b/plugins/spunull/Makefile index dcd25ea..fcfec80 100644 --- a/plugins/spunull/Makefile +++ b/plugins/spunull/Makefile @@ -1,9 +1,6 @@ include ../../config.mak -ifneq "$(ARCH)" "arm" - EXT = .$(ARCH) -endif -TARGET = spunull.so$(EXT) +TARGET = spunull.so WD = $(shell pwd) PLUGINDIR = $(shell basename $(WD)) -- cgit v1.2.3 From c668f24877c063db881fa8d1eeb8a6fbc649d5a0 Mon Sep 17 00:00:00 2001 From: notaz Date: Thu, 22 Nov 2012 00:18:21 +0200 Subject: fix some more 32/64bit incompatibilities --- plugins/spunull/xa.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/spunull') diff --git a/plugins/spunull/xa.h b/plugins/spunull/xa.h index cd38f96..6fb7bfd 100644 --- a/plugins/spunull/xa.h +++ b/plugins/spunull/xa.h @@ -5,7 +5,7 @@ typedef struct { - long y0, y1; + int y0, y1; } ADPCM_Decode_t; typedef struct -- cgit v1.2.3