From d811fca7c0cf674ca77700686d38ceba9182270c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20S=C5=82abo=C5=84?= Date: Thu, 17 Mar 2022 20:31:06 +0100 Subject: [PATCH] [WINLOGON] Make PC Speaker "beep" similar to Windows 2003 one (#4397) --- base/system/winlogon/sas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/system/winlogon/sas.c b/base/system/winlogon/sas.c index b77054caba6..20298e84b90 100644 --- a/base/system/winlogon/sas.c +++ b/base/system/winlogon/sas.c @@ -261,7 +261,7 @@ PlaySoundRoutine( { if (!bLogon) { - Beep(500, 500); + Beep(440, 125); } FreeLibrary(hLibrary); return FALSE;