summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorMathew Maidment <mathew1800@gmail.com>2016-01-24 17:17:31 -0500
committerMathew Maidment <mathew1800@gmail.com>2016-01-24 17:17:31 -0500
commitb451b722fbc2dd4d06d9fcd669b5a5fa4962389f (patch)
treee311411b09dd2440728d93175119c428d8708855 /Source/Core
parent44e44f6eb7c1b63331ddddf4ea829d5ea52dec4e (diff)
parent758cd796a771ac48e9bd0a6f73376a5ec40bca68 (diff)
Merge pull request #3562 from lioncash/cpmem
CPMemory: Remove unnecessary extern specifiers from functions
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/VideoCommon/CPMemory.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/Source/Core/VideoCommon/CPMemory.h b/Source/Core/VideoCommon/CPMemory.h
index 59183fe47f..c2280b06b7 100644
--- a/Source/Core/VideoCommon/CPMemory.h
+++ b/Source/Core/VideoCommon/CPMemory.h
@@ -262,16 +262,15 @@ struct CPState final
class PointerWrap;
-extern void DoCPState(PointerWrap& p);
-
-extern void CopyPreprocessCPStateFromMain();
-
extern CPState g_main_cp_state;
extern CPState g_preprocess_cp_state;
-
// Might move this into its own file later.
void LoadCPReg(u32 SubCmd, u32 Value, bool is_preprocess = false);
// Fills memory with data from CP regs
void FillCPMemoryArray(u32 *memory);
+
+void DoCPState(PointerWrap& p);
+
+void CopyPreprocessCPStateFromMain();