summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/DebugUtil.cpp
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2014-03-29 11:05:44 +0100
committerPierre Bourdon <delroth@gmail.com>2014-03-29 11:05:44 +0100
commit664c8d30a055f4762a2a60be77c1c8eaec1a5d85 (patch)
treead290b1f173ae3b3c70f4841efd8c46091409579 /Source/Core/VideoBackends/Software/DebugUtil.cpp
parent92fc7c64d6980c8000f8b2a8c794c7968cb74da1 (diff)
Remove all trailing whitespaces from our codebase.
Diffstat (limited to 'Source/Core/VideoBackends/Software/DebugUtil.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/DebugUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/DebugUtil.cpp b/Source/Core/VideoBackends/Software/DebugUtil.cpp
index 1c1629fba8..4577987a42 100644
--- a/Source/Core/VideoBackends/Software/DebugUtil.cpp
+++ b/Source/Core/VideoBackends/Software/DebugUtil.cpp
@@ -157,7 +157,7 @@ void DumpDepth(const std::string& filename)
{
u32 depth = EfbInterface::GetDepth(x, y);
// depth to rgba
- *(writePtr++) = depth & 0xff;
+ *(writePtr++) = depth & 0xff;
*(writePtr++) = (depth >> 8) & 0xff;
*(writePtr++) = (depth >> 16) & 0xff;
*(writePtr++) = 255;