1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-14 14:24:10 +02:00

Merge pull request #2030 from zerkawei/linux-ipc

Prevent IPCHelper usage outside Windows
This commit is contained in:
Brian Fiete 2024-09-09 10:33:04 -04:00 committed by GitHub
commit a0cc0b22e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -14518,7 +14518,7 @@ namespace IDE
} }
} }
#if !CLI #if !CLI && BF_PLATFORM_WINDOWS
void UpdateIPC() void UpdateIPC()
{ {
bool hasFocus = false; bool hasFocus = false;
@ -14821,7 +14821,7 @@ namespace IDE
//BFApp_CheckMemory(); //BFApp_CheckMemory();
} }
#if !CLI #if !CLI && BF_PLATFORM_WINDOWS
if (mSettings.mEnableDevMode) if (mSettings.mEnableDevMode)
UpdateIPC(); UpdateIPC();
#endif #endif