diff options
| author | Lioncash <mathew1800@gmail.com> | 2016-01-31 14:51:55 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2016-01-31 15:19:20 -0500 |
| commit | 1df1ba55bbdc0287a1d43a41fab1d9b6b9833ec0 (patch) | |
| tree | 76f3075031993e7a0523ba4a6198f09d81e637bc /Source/Core/VideoCommon/OpcodeDecoding.h | |
| parent | 31523b7e80846256a3eeb34be69ba1a0ffc8ef19 (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.h | 3 |
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 |
