From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1OGU9R-0005h0-Fb for garchives@archives.gentoo.org; Mon, 24 May 2010 09:40:49 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9902FE07D6; Mon, 24 May 2010 09:40:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 6F3BFE07D7 for ; Mon, 24 May 2010 09:40:44 +0000 (UTC) Received: from corvid.gentoo.org (corvid.gentoo.org [208.92.234.79]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id F2F1B1B4060 for ; Mon, 24 May 2010 09:40:43 +0000 (UTC) Received: by corvid.gentoo.org (Postfix, from userid 2102) id 3C8C32CD66; Mon, 24 May 2010 09:40:43 +0000 (UTC) From: "Alfredo Tupone (tupone)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, tupone@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in games-emulation/mednafen/files: mednafen-0.8.12-gcc45.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: mednafen-0.8.12-gcc45.patch X-VCS-Directories: games-emulation/mednafen/files X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone Content-Type: text/plain; charset=utf8 Message-Id: <20100524094043.3C8C32CD66@corvid.gentoo.org> Date: Mon, 24 May 2010 09:40:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: ce1caf2e-c7cc-4069-a1fc-ead947ac3242 X-Archives-Hash: b0ddf2c217f919c4ec8800a2b0e1d69a tupone 10/05/24 09:40:42 Added: mednafen-0.8.12-gcc45.patch Log: Build with gcc-4.5 Bug #321009 (Portage version: 2.1.8.3/cvs/Linux i686) Revision Changes Path 1.1 games-emulation/mednafen/files/mednafen-0.8.12-gcc45= .patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/me= dnafen/files/mednafen-0.8.12-gcc45.patch?rev=3D1.1&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-emulation/me= dnafen/files/mednafen-0.8.12-gcc45.patch?rev=3D1.1&content-type=3Dtext/pl= ain Index: mednafen-0.8.12-gcc45.patch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- src/pce/adpcm.cpp.old 2010-05-24 11:12:19.000000000 +0200 +++ src/pce/adpcm.cpp 2010-05-24 11:12:40.000000000 +0200 @@ -244,12 +244,12 @@ if(f >=3D 14) { int rolloff =3D (int)((((double)32087.5 / (16 - f)) / 2) * 0.= 70); - ADPCMSynth.treble_eq( blip_eq_t::blip_eq_t(-1000, rolloff, FS= ettings.SndRate)); + ADPCMSynth.treble_eq( blip_eq_t(-1000, rolloff, FSettings.Snd= Rate)); } else { int rolloff =3D (int)((((double)32087.5 / (16 - f)) / 2) * 0.= 80); - ADPCMSynth.treble_eq( blip_eq_t::blip_eq_t(-1000, rolloff, FS= ettings.SndRate)); + ADPCMSynth.treble_eq( blip_eq_t(-1000, rolloff, FSettings.Snd= Rate)); } } } --- src/pcfx/soundbox.cpp.old 2010-05-24 11:15:20.000000000 +0200 +++ src/pcfx/soundbox.cpp 2010-05-24 11:15:36.000000000 +0200 @@ -416,7 +416,7 @@ int rolloff =3D (int)((double)0.90 * 21477272 * 2 / 1365 / (1 << Sampl= eFreq) ) / 2; for(int ch =3D 0; ch < 2; ch++) for(int lr =3D 0; lr < 2; lr++) - ADPCMSynth[ch][lr].treble_eq(blip_eq_t::blip_eq_t(-1000, rolloff, FS= ettings.SndRate)); + ADPCMSynth[ch][lr].treble_eq(blip_eq_t(-1000, rolloff, FSettings.Snd= Rate)); LSampleFreq =3D SampleFreq; } }