diff options
author | Hanno Böck <hanno@gentoo.org> | 2013-05-28 10:34:08 +0000 |
---|---|---|
committer | Hanno Böck <hanno@gentoo.org> | 2013-05-28 10:34:08 +0000 |
commit | e17bff799c48d662493946d538276c4a09e2ae3b (patch) | |
tree | ad861777c74a27445010b1c8fbc9053b85b3a1c0 /games-emulation/desmume/files | |
parent | updating icinga to 1.9.1 and adding a contrib flag for bug 471174 (diff) | |
download | gentoo-2-e17bff799c48d662493946d538276c4a09e2ae3b.tar.gz gentoo-2-e17bff799c48d662493946d538276c4a09e2ae3b.tar.bz2 gentoo-2-e17bff799c48d662493946d538276c4a09e2ae3b.zip |
games-emulation/desmume: Version bump, port to EAPI 5, remove some old versions.
(Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key 0xA5880072BBB51E42)
Diffstat (limited to 'games-emulation/desmume/files')
4 files changed, 0 insertions, 50 deletions
diff --git a/games-emulation/desmume/files/desmume-0.9.4-gcc44.patch b/games-emulation/desmume/files/desmume-0.9.4-gcc44.patch deleted file mode 100644 index d95a16c8aae1..000000000000 --- a/games-emulation/desmume/files/desmume-0.9.4-gcc44.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- desmume-0.9.4/src/texcache.h 2009-07-08 11:11:01.000000000 +0300 -+++ desmume-0.9.4-gcc44/src/texcache.h 2009-07-24 20:21:16.000000000 +0300 -@@ -43,7 +43,7 @@ - - void TexCache_Reset(); - --template<TexCache_TexFormat format> -+template<TexCache_TexFormat> - void TexCache_SetTexture(u32 format, u32 texpal); - - void TexCache_Invalidate(); diff --git a/games-emulation/desmume/files/desmume-0.9.5-sse2-fix.diff b/games-emulation/desmume/files/desmume-0.9.5-sse2-fix.diff deleted file mode 100644 index 1f9d48ad857d..000000000000 --- a/games-emulation/desmume/files/desmume-0.9.5-sse2-fix.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- trunk/desmume/src/matrix.h 2009/12/12 10:34:06 3145 -+++ trunk/desmume/src/matrix.h 2009/12/12 16:30:55 3146 -@@ -115,7 +115,7 @@ - - //switched SSE2 functions - //------------- --#ifdef ENABLE_SSE -+#ifdef ENABLE_SSE2 - - template<int NUM> - FORCEINLINE void memset_u16_le(void* dst, u16 val) diff --git a/games-emulation/desmume/files/desmume-add-missing-potfiles.diff b/games-emulation/desmume/files/desmume-add-missing-potfiles.diff deleted file mode 100644 index 7ce2f8758086..000000000000 --- a/games-emulation/desmume/files/desmume-add-missing-potfiles.diff +++ /dev/null @@ -1,6 +0,0 @@ ---- desmume-0.9.7/po/POTFILES.skip 2011-01-27 11:27:00.000000000 +0100 -+++ desmume-0.9.7-1/po/POTFILES.skip 2011-11-11 21:10:30.550725740 +0100 -@@ -1,2 +1,3 @@ - src/wx/PadSimple/GUI/ConfigDlg.cpp - src/wxdlg/wxdlg3dViewer.cpp -+src/wxdlg/wxcontrolsconfigdialog.cpp diff --git a/games-emulation/desmume/files/desmume-fix-gcc-warning.diff b/games-emulation/desmume/files/desmume-fix-gcc-warning.diff deleted file mode 100644 index 409640264c7a..000000000000 --- a/games-emulation/desmume/files/desmume-fix-gcc-warning.diff +++ /dev/null @@ -1,22 +0,0 @@ ---- desmume-0.9.7/src/GPU.cpp 2011-01-27 11:27:00.000000000 +0100 -+++ desmume-0.9.7-fix-warning/src/GPU.cpp 2011-11-11 21:17:10.826721602 +0100 -@@ -1184,16 +1184,16 @@ - case BGType_AffineExt_256x1: - // 256 colors - pal = MMU.ARM9_VMEM + gpu->core * 0x400; -- apply_rot_fun<rot_256_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_ram[num], NULL, pal); -+ apply_rot_fun<rot_256_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_ram[num], 0, pal); - return; - case BGType_AffineExt_Direct: - // direct colors / BMP -- apply_rot_fun<rot_BMP_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_ram[num], NULL, NULL); -+ apply_rot_fun<rot_BMP_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_ram[num], 0, NULL); - return; - case BGType_Large8bpp: - // large screen 256 colors - pal = MMU.ARM9_VMEM + gpu->core * 0x400; -- apply_rot_fun<rot_256_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_large_ram[num], NULL, pal); -+ apply_rot_fun<rot_256_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_large_ram[num], 0, pal); - return; - default: break; - } |