summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/OpcodeDecoding.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-01-31 14:51:55 -0500
committerLioncash <mathew1800@gmail.com>2016-01-31 15:19:20 -0500
commit1df1ba55bbdc0287a1d43a41fab1d9b6b9833ec0 (patch)
tree76f3075031993e7a0523ba4a6198f09d81e637bc /Source/Core/VideoCommon/OpcodeDecoding.h
parent31523b7e80846256a3eeb34be69ba1a0ffc8ef19 (diff)
VideoCommon: Convert some DataReader includes into forward declarations
Gets rid of some indirect inclusions in cpp files. Also this will reduce the amount of rebuilt files if changes occur in the DataReader header.
Diffstat (limited to 'Source/Core/VideoCommon/OpcodeDecoding.h')
-rw-r--r--Source/Core/VideoCommon/OpcodeDecoding.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/OpcodeDecoding.h b/Source/Core/VideoCommon/OpcodeDecoding.h
index f955ecb90a..0cebc13cf9 100644
--- a/Source/Core/VideoCommon/OpcodeDecoding.h
+++ b/Source/Core/VideoCommon/OpcodeDecoding.h
@@ -5,7 +5,8 @@
#pragma once
#include "Common/CommonTypes.h"
-#include "VideoCommon/DataReader.h"
+
+class DataReader;
#define GX_NOP 0x00
#define GX_UNKNOWN_RESET 0x01