diff options
Diffstat (limited to 'Mouse.cs')
| -rw-r--r-- | Mouse.cs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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")); } } |
