Call base.Dispose to banish warning

This commit is contained in:
YoshiRulz 2020-07-22 06:03:15 +10:00
parent 85be93c9d2
commit 966a2abe3f
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 1 additions and 0 deletions

View File

@ -104,6 +104,7 @@ namespace BizHawk.BizInvoke
protected override void Dispose(bool disposing)
{
_closed = true;
base.Dispose(disposing);
}
}
}