summaryrefslogtreecommitdiff
path: root/Mouse.cs
diff options
context:
space:
mode:
authorSarah Bradley <git@sarahduck.ca>2023-12-25 01:50:06 -0800
committerSarah Bradley <git@sarahduck.ca>2023-12-25 01:50:06 -0800
commit828672047ffd306f78b93f11c3d9a8dfafa3d653 (patch)
tree06cc9c9ef7c4554574ee3855dd681fd88b8b408a /Mouse.cs
parentff3cbc5b49f8618531c5778d69b49c0aa4a9442a (diff)
Added spectator mode, and fixed some networking issues
Diffstat (limited to 'Mouse.cs')
-rw-r--r--Mouse.cs2
1 files changed, 1 insertions, 1 deletions
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"));
}
}