summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/DebugUtil.h
diff options
context:
space:
mode:
authorMarkus Wick <degasus@users.noreply.github.com>2016-09-23 10:24:55 +0200
committerGitHub <noreply@github.com>2016-09-23 10:24:55 +0200
commit9d85d9b000ee20f65ba7679488465624fcd1cd3a (patch)
tree8bb2f27495e411254fd8474c989667bc7360e859 /Source/Core/VideoBackends/Software/DebugUtil.h
parent2d0e857cb3cd132a082958cbda32aa0b350652d0 (diff)
parent330944eef89a28c08a0227a9a166f583532ae906 (diff)
Merge pull request #4237 from lioncash/const
Software: const correctness
Diffstat (limited to 'Source/Core/VideoBackends/Software/DebugUtil.h')
-rw-r--r--Source/Core/VideoBackends/Software/DebugUtil.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/Core/VideoBackends/Software/DebugUtil.h b/Source/Core/VideoBackends/Software/DebugUtil.h
index c90e790496..1b95b2b222 100644
--- a/Source/Core/VideoBackends/Software/DebugUtil.h
+++ b/Source/Core/VideoBackends/Software/DebugUtil.h
@@ -4,7 +4,7 @@
#pragma once
-#include "Common/Common.h"
+#include "Common/CommonTypes.h"
namespace DebugUtil
{
@@ -18,8 +18,9 @@ void DumpActiveTextures();
void OnObjectBegin();
void OnObjectEnd();
-void DrawObjectBuffer(s16 x, s16 y, u8* color, int bufferBase, int subBuffer, const char* name);
+void DrawObjectBuffer(s16 x, s16 y, const u8* color, int bufferBase, int subBuffer,
+ const char* name);
-void DrawTempBuffer(u8* color, int buffer);
+void DrawTempBuffer(const u8* color, int buffer);
void CopyTempBuffer(s16 x, s16 y, int bufferBase, int subBuffer, const char* name);
}