Animate song bar based on game mode

This commit is contained in:
Dean Herbert
2018-11-11 01:29:42 +09:00
parent 976180ecc2
commit 86423dce5f
4 changed files with 53 additions and 18 deletions

View File

@ -87,9 +87,8 @@ namespace osu.Game.Tournament.IPC
State.Value = (TourneyState)Enum.Parse(typeof(TourneyState), sr.ReadLine());
}
}
catch (Exception e)
catch (Exception)
{
Logger.Log(e.ToString(), LoggingTarget.Runtime);
// file might be in use.
}
@ -102,9 +101,8 @@ namespace osu.Game.Tournament.IPC
Score2 = int.Parse(sr.ReadLine());
}
}
catch (Exception e)
catch (Exception)
{
Logger.Log(e.ToString(), LoggingTarget.Runtime);
// file might be in use.
}
}, 250, true);