From e911441394ad80a7871b41a1be8686f672fa76d5 Mon Sep 17 00:00:00 2001 From: Huo Yaoyuan Date: Tue, 16 May 2017 21:23:14 +0800 Subject: [PATCH] Why AbandonedMutexException? --- osu.Game/IO/Legacy/SerializationReader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/IO/Legacy/SerializationReader.cs b/osu.Game/IO/Legacy/SerializationReader.cs index 6bb6c3bbbf..c4d56641af 100644 --- a/osu.Game/IO/Legacy/SerializationReader.cs +++ b/osu.Game/IO/Legacy/SerializationReader.cs @@ -66,7 +66,7 @@ namespace osu.Game.IO.Legacy public DateTime ReadDateTime() { long ticks = ReadInt64(); - if (ticks < 0) throw new AbandonedMutexException("oops"); + if (ticks < 0) throw new IOException("Bad ticks count read!"); return new DateTime(ticks, DateTimeKind.Utc); }