Gentoo Archives: gentoo-commits

From: "Hanno Boeck (hanno)" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/desmume/files: desmume-add-missing-potfiles.diff desmume-fix-gcc-warning.diff
Date: Sat, 12 Nov 2011 21:11:38
Message-Id: 20111112210135.303B82004B@flycatcher.gentoo.org
1 hanno 11/11/12 21:01:35
2
3 Added: desmume-add-missing-potfiles.diff
4 desmume-fix-gcc-warning.diff
5 Log:
6 desmume version bump
7
8 (Portage version: 2.1.10.34/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.1 games-emulation/desmume/files/desmume-add-missing-potfiles.diff
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/desmume/files/desmume-add-missing-potfiles.diff?rev=1.1&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/desmume/files/desmume-add-missing-potfiles.diff?rev=1.1&content-type=text/plain
15
16 Index: desmume-add-missing-potfiles.diff
17 ===================================================================
18 --- desmume-0.9.7/po/POTFILES.skip 2011-01-27 11:27:00.000000000 +0100
19 +++ desmume-0.9.7-1/po/POTFILES.skip 2011-11-11 21:10:30.550725740 +0100
20 @@ -1,2 +1,3 @@
21 src/wx/PadSimple/GUI/ConfigDlg.cpp
22 src/wxdlg/wxdlg3dViewer.cpp
23 +src/wxdlg/wxcontrolsconfigdialog.cpp
24
25
26
27 1.1 games-emulation/desmume/files/desmume-fix-gcc-warning.diff
28
29 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/desmume/files/desmume-fix-gcc-warning.diff?rev=1.1&view=markup
30 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/desmume/files/desmume-fix-gcc-warning.diff?rev=1.1&content-type=text/plain
31
32 Index: desmume-fix-gcc-warning.diff
33 ===================================================================
34 --- desmume-0.9.7/src/GPU.cpp 2011-01-27 11:27:00.000000000 +0100
35 +++ desmume-0.9.7-fix-warning/src/GPU.cpp 2011-11-11 21:17:10.826721602 +0100
36 @@ -1184,16 +1184,16 @@
37 case BGType_AffineExt_256x1:
38 // 256 colors
39 pal = MMU.ARM9_VMEM + gpu->core * 0x400;
40 - apply_rot_fun<rot_256_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_ram[num], NULL, pal);
41 + apply_rot_fun<rot_256_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_ram[num], 0, pal);
42 return;
43 case BGType_AffineExt_Direct:
44 // direct colors / BMP
45 - apply_rot_fun<rot_BMP_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_ram[num], NULL, NULL);
46 + apply_rot_fun<rot_BMP_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_ram[num], 0, NULL);
47 return;
48 case BGType_Large8bpp:
49 // large screen 256 colors
50 pal = MMU.ARM9_VMEM + gpu->core * 0x400;
51 - apply_rot_fun<rot_256_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_large_ram[num], NULL, pal);
52 + apply_rot_fun<rot_256_map<MOSAIC> >(gpu,X,Y,PA,PB,PC,PD,LG, gpu->BG_bmp_large_ram[num], 0, pal);
53 return;
54 default: break;
55 }