1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Turn off Beep failure for BeefBuild

This commit is contained in:
Brian Fiete 2022-09-20 13:24:32 -07:00
parent 09a58b0a24
commit 208f9f2c60

View file

@ -14471,7 +14471,7 @@ namespace IDE
public static void Beep(MessageBeepType type)
{
#if BF_PLATFORM_WINDOWS
#if BF_PLATFORM_WINDOWS && !CLI
MessageBeep(type);
#endif
}