1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-12 16:43:00 +08:00

Isolate development builds' storage from release builds

This commit is contained in:
Dean Herbert 2022-08-01 14:38:02 +09:00
parent 195396309a
commit a5f48e336a
2 changed files with 8 additions and 0 deletions

View File

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

View File

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