We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af2b87f commit 5eeeb1fCopy full SHA for 5eeeb1f
Intersect.Client.Framework/Graphics/GameTexture.cs
@@ -418,6 +418,11 @@ private void EmitUnloaded()
418
419
private void Dispose(bool disposing)
420
{
421
+ if (!disposing && _disposed)
422
+ {
423
+ return;
424
+ }
425
+
426
ObjectDisposedException.ThrowIf(_disposed, this);
427
428
_disposed = true;
0 commit comments