From adbffc24e9e5330ccadba3532d493772ad5a8c1b Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 26 Mar 2017 19:30:39 -0400 Subject: [PATCH] VideoInterface: Make clock frequency array constexpr This is only ever read from. --- Source/Core/Core/HW/VideoInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/HW/VideoInterface.cpp b/Source/Core/Core/HW/VideoInterface.cpp index ff43dfd6bf..b0135c28db 100644 --- a/Source/Core/Core/HW/VideoInterface.cpp +++ b/Source/Core/Core/HW/VideoInterface.cpp @@ -57,7 +57,7 @@ static UVIBorderBlankRegister m_BorderHBlank; static u32 s_target_refresh_rate = 0; -static std::array s_clock_freqs{{ +static constexpr std::array s_clock_freqs{{ 27000000, 54000000, }};