https://git.reactos.org/?p=reactos.git;a=commitdiff;h=d811fca7c0cf674ca7770…
commit d811fca7c0cf674ca77700686d38ceba9182270c
Author: Adam Słaboń <asaillen(a)protonmail.com>
AuthorDate: Thu Mar 17 20:31:06 2022 +0100
Commit: GitHub <noreply(a)github.com>
CommitDate: Thu Mar 17 22:31:06 2022 +0300
[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;