diff options
| author | Sarah Bradley <git@sarahduck.ca> | 2023-12-25 01:50:06 -0800 |
|---|---|---|
| committer | Sarah Bradley <git@sarahduck.ca> | 2023-12-25 01:50:06 -0800 |
| commit | 828672047ffd306f78b93f11c3d9a8dfafa3d653 (patch) | |
| tree | 06cc9c9ef7c4554574ee3855dd681fd88b8b408a /Mouse.cs | |
| parent | ff3cbc5b49f8618531c5778d69b49c0aa4a9442a (diff) | |
Added spectator mode, and fixed some networking issues
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")); } } |
