Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mpc-hc/AboutDlg.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mpc-hc/AboutDlg.cpp b/src/mpc-hc/AboutDlg.cpp
index d6fc6ad0c..bc23fbe70 100644
--- a/src/mpc-hc/AboutDlg.cpp
+++ b/src/mpc-hc/AboutDlg.cpp
@@ -109,7 +109,9 @@ BOOL CAboutDlg::OnInitDialog()
#error Please add support for your compiler
#endif
-#if (__AVX__)
+#if (__AVX2__)
+ m_MPCCompiler += _T(" (AVX2)");
+#elif (__AVX__)
m_MPCCompiler += _T(" (AVX)");
#elif (__SSSE3__)
m_MPCCompiler += _T(" (SSSE3)");