1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:07:25 +08:00

Fix get-set mismatch.

This commit is contained in:
Dean Herbert 2017-04-26 19:25:41 +09:00
parent f48d497737
commit e826f17eb0

View File

@ -19,7 +19,10 @@ namespace osu.Game.Screens.Play
private ReplayInputHandler replayInputHandler;
public ReplayInputHandler ReplayInputHandler
{
get { return replayInputHandler; }
get
{
return replayInputHandler;
}
set
{
if (replayInputHandler != null) RemoveHandler(replayInputHandler);