add a missing dispose of the base class

This commit is contained in:
Matthias Mailänder
2015-05-31 15:31:22 +02:00
parent a12e6a191b
commit a3c8d4691a
2 changed files with 4 additions and 0 deletions

View File

@@ -125,6 +125,8 @@ namespace OpenRA.Mods.Cnc
{ {
if (sheet != null) if (sheet != null)
sheet.Dispose(); sheet.Dispose();
base.Dispose();
} }
} }
} }

View File

@@ -70,6 +70,8 @@ namespace OpenRA.Mods.Common.LoadScreens
{ {
if (sheet != null) if (sheet != null)
sheet.Dispose(); sheet.Dispose();
base.Dispose();
} }
} }
} }