dispose method logging
This commit is contained in:
parent
26ed52d390
commit
fe789ffab1
|
@ -635,6 +635,8 @@ namespace Blarg.GameFramework
|
|||
|
||||
public override void Dispose()
|
||||
{
|
||||
base.Dispose();
|
||||
Logger.Info(LOG_TAG, "Disposing.");
|
||||
ReleaseSDL();
|
||||
GC.SuppressFinalize(this);
|
||||
}
|
||||
|
|
|
@ -100,6 +100,8 @@ namespace Blarg.GameFramework
|
|||
|
||||
public virtual void Dispose()
|
||||
{
|
||||
Logger.Info(LOG_TAG, "Disposing.");
|
||||
GameApp.Dispose();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue