summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/BPFunctions.cpp
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2014-05-03 17:16:18 -0400
committerJasper St. Pierre <jstpierre@mecheye.net>2014-05-20 11:28:15 -0400
commit9d161b4170a5c1df8065895666b8b2c1e06f94e7 (patch)
tree58164b14d8374e1427674a7f4d79b0bf7a2f6008 /Source/Core/VideoCommon/BPFunctions.cpp
parent1ae8edc1d006b321941983ad262b9f16c16e9074 (diff)
BPStructs: Consistently put the two shared copy args first
And rename them so they make a bit more sense.
Diffstat (limited to 'Source/Core/VideoCommon/BPFunctions.cpp')
-rw-r--r--Source/Core/VideoCommon/BPFunctions.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/BPFunctions.cpp b/Source/Core/VideoCommon/BPFunctions.cpp
index a5cb6d9f66..76745e89e0 100644
--- a/Source/Core/VideoCommon/BPFunctions.cpp
+++ b/Source/Core/VideoCommon/BPFunctions.cpp
@@ -90,8 +90,9 @@ void SetColorMask()
g_renderer->SetColorMask();
}
-void CopyEFB(u32 dstAddr, unsigned int dstFormat, PEControl::PixelFormat srcFormat,
- const EFBRectangle& srcRect, bool isIntensity, bool scaleByHalf)
+void CopyEFB(u32 dstAddr, const EFBRectangle& srcRect,
+ unsigned int dstFormat, PEControl::PixelFormat srcFormat,
+ bool isIntensity, bool scaleByHalf)
{
// bpmem.zcontrol.pixel_format to PEControl::Z24 is when the game wants to copy from ZBuffer (Zbuffer uses 24-bit Format)
if (g_ActiveConfig.bEFBCopyEnable)