Fix stack overflow in FlashOverlay dispose. (#13082)

This commit is contained in:
Pieter-Jan Briers 2022-12-19 03:06:16 +01:00 committed by GitHub
parent 081982735c
commit 4bfc644a03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ namespace Content.Client.Flash
protected override void DisposeBehavior()
{
base.Dispose();
base.DisposeBehavior();
_screenshotTexture = null;
}
}