summaryrefslogtreecommitdiff
path: root/Mouse.cs
diff options
context:
space:
mode:
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"));
}
}