Skip to content

Commit

Permalink
don't rely on a rustc bug
Browse files Browse the repository at this point in the history
  • Loading branch information
aliemjay authored and Aaron1011 committed Jul 29, 2022
1 parent 0d3e046 commit 67fbc84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/display_object/movie_clip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,7 @@ impl<'gc> MovieClip<'gc> {
frame_pos = reader.get_ref().as_ptr() as u64 - tag_stream_start;

use swf::TagCode;
let tag_callback = |reader: &mut SwfStream<'gc>, tag_code, tag_len| match tag_code {
let tag_callback = |reader: &mut _, tag_code, tag_len| match tag_code {
TagCode::PlaceObject => {
index += 1;
let mut mc = self.0.write(context.gc_context);
Expand Down

0 comments on commit 67fbc84

Please sign in to comment.