This commit is contained in:
Brian Carroll 2022-11-24 12:06:12 +00:00
parent 6523b38847
commit f10262a41d
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
3 changed files with 8 additions and 4 deletions

View file

@ -106,9 +106,9 @@ impl<'a> ExecutionState<'a> {
if let Some((return_addr, block_depth)) = self.call_stack.pop_frame() {
self.program_counter = return_addr as usize;
self.block_depth = block_depth;
return Action::Continue;
Action::Continue
} else {
return Action::Break;
Action::Break
}
}