Merge pull request #19513 from peppy/isolate-development-storage

Isolate development builds' storage from release builds
This commit is contained in:
Dan Balasescu 2022-08-01 17:30:25 +09:00 committed by GitHub
commit 5f9c3b42e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -21,7 +21,11 @@ namespace osu.Desktop
{
public static class Program
{
#if DEBUG
private const string base_game_name = @"osu-development";
#else
private const string base_game_name = @"osu";
#endif
private static LegacyTcpIpcProvider legacyIpc;

View File

@ -212,6 +212,10 @@ namespace osu.Game
{
Name = @"osu!";
#if DEBUG
Name += " (development)";
#endif
allowableExceptions = UnhandledExceptionsBeforeCrash;
}