From 16ff2a17e34480a4d7a37aa58679d16d9355a66f Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Wed, 15 Mar 2023 19:51:25 -0500 Subject: [PATCH] avm2: Stub TextureBase.dispose --- .../avm2/globals/flash/display3D/textures/TextureBase.as | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/core/src/avm2/globals/flash/display3D/textures/TextureBase.as b/core/src/avm2/globals/flash/display3D/textures/TextureBase.as index 2210efa46..dd4d5a351 100644 --- a/core/src/avm2/globals/flash/display3D/textures/TextureBase.as +++ b/core/src/avm2/globals/flash/display3D/textures/TextureBase.as @@ -1,6 +1,10 @@ package flash.display3D.textures { import flash.events.EventDispatcher; - public class TextureBase extends EventDispatcher { + import __ruffle__.stub_method; + public class TextureBase extends EventDispatcher { + public function dispose():void { + stub_method("flash.display3D.textures.TextureBase", "dispose"); + } } } \ No newline at end of file