mirror of
https://github.com/ppy/osu.git
synced 2024-12-16 00:52:59 +08:00
Merge pull request #5775 from peppy/fix-skin-test-regression
Fix LegacySkin not checking for @2x hitcircle when deciding sizing
This commit is contained in:
commit
f9d35c7e1b
@ -59,7 +59,7 @@ namespace osu.Game.Skinning
|
||||
Samples = audioManager.GetSampleStore(storage);
|
||||
Textures = new TextureStore(new TextureLoaderStore(storage));
|
||||
|
||||
using (var testStream = storage.GetStream("hitcircle"))
|
||||
using (var testStream = storage.GetStream("hitcircle@2x") ?? storage.GetStream("hitcircle"))
|
||||
hasHitCircle |= testStream != null;
|
||||
|
||||
if (hasHitCircle)
|
||||
|
Loading…
Reference in New Issue
Block a user