mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'lemu/src/executor/builder.rs')
-rw-r--r--lemu/src/executor/builder.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/lemu/src/executor/builder.rs b/lemu/src/executor/builder.rs
index 44f8df2..f14f4c8 100644
--- a/lemu/src/executor/builder.rs
+++ b/lemu/src/executor/builder.rs
@@ -131,6 +131,7 @@ impl<'s, W: Wr> ExecutorBuilderInternal<'s, W> {
banks: cst::<BANK_SIZE>(banks),
memory: LRegistry::new(mem),
counter: 0,
+ iterations: 0,
display: Drawing {
displays: displays.into(),
buffer: VecDeque::new(),
@@ -153,7 +154,6 @@ impl<'s, W: Wr> ExecutorBuilderInternal<'s, W> {
.collect::<Box<[PInstr]>>(),
),
instructions_ran: 0,
- iterations: 0,
}
}
}