From 208f9f2c6039b0de3ffcaf40c8b0f0ef24e56afc Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Tue, 20 Sep 2022 13:24:32 -0700 Subject: [PATCH] Turn off Beep failure for BeefBuild --- IDE/src/IDEApp.bf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDE/src/IDEApp.bf b/IDE/src/IDEApp.bf index 8013898e..ae5a0c64 100644 --- a/IDE/src/IDEApp.bf +++ b/IDE/src/IDEApp.bf @@ -14471,7 +14471,7 @@ namespace IDE public static void Beep(MessageBeepType type) { -#if BF_PLATFORM_WINDOWS +#if BF_PLATFORM_WINDOWS && !CLI MessageBeep(type); #endif }