mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:07:52 +08:00
Isolate development builds' storage from release builds
This commit is contained in:
parent
195396309a
commit
a5f48e336a
@ -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;
|
||||
|
||||
|
@ -212,6 +212,10 @@ namespace osu.Game
|
||||
{
|
||||
Name = @"osu!";
|
||||
|
||||
#if DEBUG
|
||||
Name += " (development)";
|
||||
#endif
|
||||
|
||||
allowableExceptions = UnhandledExceptionsBeforeCrash;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user