1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-22 23:23:28 +08:00

Merge pull request #31000 from LittleEndu/release-ipc-name

Fix IPC not working in release
This commit is contained in:
Dean Herbert 2024-12-07 04:37:13 -08:00 committed by GitHub
commit eeac8f530f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -89,7 +89,7 @@ namespace osu.Game
// Different port allows running release and debug builds alongside each other. // Different port allows running release and debug builds alongside each other.
public const string IPC_PIPE_NAME = "osu-lazer-debug"; public const string IPC_PIPE_NAME = "osu-lazer-debug";
#else #else
public const string IPC_PORT = "osu-lazer"; public const string IPC_PIPE_NAME = "osu-lazer";
#endif #endif
/// <summary> /// <summary>