From 828672047ffd306f78b93f11c3d9a8dfafa3d653 Mon Sep 17 00:00:00 2001 From: Sarah Bradley Date: Mon, 25 Dec 2023 01:50:06 -0800 Subject: Added spectator mode, and fixed some networking issues --- Mouse.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Mouse.cs') diff --git a/Mouse.cs b/Mouse.cs index fad056e..544344e 100644 --- a/Mouse.cs +++ b/Mouse.cs @@ -25,7 +25,7 @@ abstract class Mouse : Drawable if (File.Exists(CursorPath) && new FileInfo(CursorPath).Length < 12*19*3) { Cursor = Bitmap.FromPNGMemory(File.ReadAllBytes(CursorPath)); } else { - Console.WriteLine("Path to cursor png was invalid or the file was too big, using the default."); + Console.WriteLine("The cursor PNG was either mising or too big. Using the default."); Cursor = Bitmap.FromPNGMemory(EmbeddedResources.GetResource("misc.cursor.png")); } } -- cgit