aboutsummaryrefslogtreecommitdiff
path: root/SuperPolarity/Actors/GameActor.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SuperPolarity/Actors/GameActor.cs')
-rw-r--r--SuperPolarity/Actors/GameActor.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/SuperPolarity/Actors/GameActor.cs b/SuperPolarity/Actors/GameActor.cs
index 8015ffa..3f426c0 100644
--- a/SuperPolarity/Actors/GameActor.cs
+++ b/SuperPolarity/Actors/GameActor.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -55,7 +55,11 @@ namespace SuperPolarity
{
base.Draw(spriteBatch);
- spriteBatch.Draw(Texture, Position, null, Color, Angle, Origin, 1f, SpriteEffects.None, 0f);
+ try {
+ spriteBatch.Draw(Texture, Position, null, Color, Angle, Origin, 1f, SpriteEffects.None, 0f);
+ } catch (ArgumentNullException) {
+ Console.WriteLine ("Where'd the texture go?.");
+ }
}
public override void CleanUp()