From ac3f8991ea9c1b881052ff2909b490a7971c133d Mon Sep 17 00:00:00 2001 From: Lord-McSweeney Date: Mon, 16 Sep 2024 21:47:52 -0700 Subject: [PATCH] core: Remove unused MovieClipStatic.processed_bytecode_tags_pos --- core/src/display_object/movie_clip.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/core/src/display_object/movie_clip.rs b/core/src/display_object/movie_clip.rs index b737c84af..0733bfdbf 100644 --- a/core/src/display_object/movie_clip.rs +++ b/core/src/display_object/movie_clip.rs @@ -4863,12 +4863,6 @@ struct MovieClipStatic<'gc> { /// Preload progress for the given clip's tag stream. preload_progress: GcCell<'gc, PreloadProgress>, - /// Holds the tag offset for the furthest DoAbc/DoAbc2/SymbolClass tags that we've - /// already run. These tags are run as part of normal frame processing - this - /// is observable by ActionScript, which might load a class in a stop()'d MovieClip, - /// and then advance to a frame containing a SymbolClass that references the loaded class. - processed_bytecode_tags_pos: GcCell<'gc, i64>, - // These two maps hold DoAbc/SymbolClass data that was loaded during preloading, but // hasn't yet been executed yet. The first time we encounter a frame, we will remove // the `Vec` from this map, and process it in `run_eager_script_and_symbol` @@ -4913,7 +4907,6 @@ impl<'gc> MovieClipStatic<'gc> { avm2_class: GcCell::new(gc_context, None), loader_info, preload_progress: GcCell::new(gc_context, Default::default()), - processed_bytecode_tags_pos: GcCell::new(gc_context, -1), abc_tags: GcCell::new(gc_context, Default::default()), symbolclass_names: GcCell::new(gc_context, Default::default()), }