summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/DebugUtil.h
diff options
context:
space:
mode:
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);
}