Fix namespace, comply with naming rules

This commit is contained in:
Alex Amadori
2017-03-13 11:36:21 +01:00
parent caa6e9c82b
commit c84a9d56f5
6 changed files with 8 additions and 7 deletions

View File

@ -16,7 +16,7 @@ namespace osu.Game.Beatmaps.IO
AddReader<OszArchiveReader>((storage, path) =>
{
using (var stream = storage.GetStream(path))
return Path.GetExtension(path) == OszExtension && ZipFile.IsZipFile(stream, false);
return Path.GetExtension(path) == OSZ_EXTENSION && ZipFile.IsZipFile(stream, false);
});
OsuLegacyDecoder.Register();
}