mirror of
https://github.com/ppy/osu
synced 2024-12-16 03:45:46 +00:00
Merge pull request #19513 from peppy/isolate-development-storage
Isolate development builds' storage from release builds
This commit is contained in:
commit
5f9c3b42e8
@ -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;
|
||||||
|
|
||||||
|
@ -212,6 +212,10 @@ namespace osu.Game
|
|||||||
{
|
{
|
||||||
Name = @"osu!";
|
Name = @"osu!";
|
||||||
|
|
||||||
|
#if DEBUG
|
||||||
|
Name += " (development)";
|
||||||
|
#endif
|
||||||
|
|
||||||
allowableExceptions = UnhandledExceptionsBeforeCrash;
|
allowableExceptions = UnhandledExceptionsBeforeCrash;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user