core: Fix looping movieclips

This commit is contained in:
Mike Welsh 2019-09-17 17:03:59 -07:00
parent a331c565b3
commit be0bb0b803
1 changed files with 1 additions and 0 deletions

View File

@ -242,6 +242,7 @@ impl<'gc> MovieClip<'gc> {
// Specifically, object that existed on frame 1 should not be destroyed // Specifically, object that existed on frame 1 should not be destroyed
// and recreated. // and recreated.
self.run_goto(context, 1); self.run_goto(context, 1);
return;
} else { } else {
// Single frame clips do not play. // Single frame clips do not play.
self.stop(); self.stop();