From 9e6bb68a649bb33a5e954113649aa829270e1e00 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 30 Jul 2016 18:47:33 -0400 Subject: [PATCH] DSP: Make DSP_CONTROL_MASK a concrete constant --- Source/Core/Core/HW/DSP.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/DSP.h b/Source/Core/Core/HW/DSP.h index 4eceaa8706..440d8decdd 100644 --- a/Source/Core/Core/HW/DSP.h +++ b/Source/Core/Core/HW/DSP.h @@ -30,7 +30,7 @@ enum }; // UDSPControl -#define DSP_CONTROL_MASK 0x0C07 +constexpr u16 DSP_CONTROL_MASK = 0x0C07; union UDSPControl { u16 Hex; struct