Oops, accidentally committed something unfinished too. reverted.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2476 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard 2009-02-28 19:07:43 +00:00
parent 1a2a320652
commit 437ebab1a7
1 changed files with 1 additions and 8 deletions

View File

@ -417,15 +417,8 @@ void BPWritten(int addr, int changes, int newval)
}
else if (g_Config.bCopyEFBToRAM)
{
TRectangle scaled_rc;
float xScale = Renderer::GetTargetScaleX();
float yScale = Renderer::GetTargetScaleY();
scaled_rc.left = rc.left * xScale;
scaled_rc.right = rc.right * xScale;
scaled_rc.top = rc.top * xScale;
scaled_rc.bottom = rc.bottom * xScale;
TextureConverter::EncodeToRam(bpmem.copyTexDest<<5, bpmem.zcontrol.pixel_format==PIXELFMT_Z24, PE_copy.intensity_fmt>0,
(PE_copy.target_pixel_format/2)+((PE_copy.target_pixel_format&1)*8), PE_copy.half_scale>0, scaled_rc);
(PE_copy.target_pixel_format/2)+((PE_copy.target_pixel_format&1)*8), PE_copy.half_scale>0, rc);
}
else
{