A game framework written with osu! in mind.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Reduce verbosity of STBI errors

+1 -1
+1 -1
osu.Framework/Graphics/Textures/TextureUpload.cs
··· 98 98 if (e is DllNotFoundException) 99 99 stbiNotFound = true; 100 100 101 - Logger.Error(e, "Texture could not be loaded via STB; falling back to ImageSharp."); 101 + Logger.Log($"Texture could not be loaded via STB; falling back to ImageSharp: {e.Message}"); 102 102 stream.Position = initialPos; 103 103 return Image.Load<TPixel>(stream); 104 104 }