VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Mount
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2020-06-18 16:41:24 +0200
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2020-06-19 01:28:07 +0200
commit0e3f4c40e3b1c5d8958148b079d4e9c6ae60ae69 (patch)
treef5f9889f046af1e17312346fcb9e898d4d6cb713 /src/Mount
parenteaf400b088c147042457a15bd4a3d44941e86cb0 (diff)
downloadVeraCrypt-0e3f4c40e3b1c5d8958148b079d4e9c6ae60ae69.tar.gz
VeraCrypt-0e3f4c40e3b1c5d8958148b079d4e9c6ae60ae69.zip
Windows: remove duplicated function to detect AES-NI support in CPU
Diffstat (limited to 'src/Mount')
-rw-r--r--src/Mount/Mount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mount/Mount.c b/src/Mount/Mount.c
index 6b491c55..9dd5c479 100644
--- a/src/Mount/Mount.c
+++ b/src/Mount/Mount.c
@@ -11288,7 +11288,7 @@ static BOOL CALLBACK PerformanceSettingsDlgProc (HWND hwndDlg, UINT msg, WPARAM
SetWindowTextW (GetDlgItem (hwndDlg, IDT_LIMIT_ENC_THREAD_POOL_NOTE), GetString("LIMIT_ENC_THREAD_POOL_NOTE"));
- SetDlgItemTextW (hwndDlg, IDC_HW_AES_SUPPORTED_BY_CPU, (wstring (L" ") + (GetString (is_aes_hw_cpu_supported() ? "UISTR_YES" : "UISTR_NO"))).c_str());
+ SetDlgItemTextW (hwndDlg, IDC_HW_AES_SUPPORTED_BY_CPU, (wstring (L" ") + (GetString (HasAESNI() ? "UISTR_YES" : "UISTR_NO"))).c_str());
ToHyperlink (hwndDlg, IDC_MORE_INFO_ON_HW_ACCELERATION);
ToHyperlink (hwndDlg, IDC_MORE_INFO_ON_THREAD_BASED_PARALLELIZATION);