mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'lemu/src/executor/builder.rs')
-rw-r--r--lemu/src/executor/builder.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/lemu/src/executor/builder.rs b/lemu/src/executor/builder.rs
index 4d35a36..bd5b527 100644
--- a/lemu/src/executor/builder.rs
+++ b/lemu/src/executor/builder.rs
@@ -59,6 +59,7 @@ impl<'s, W: Wr> ExecutorBuilderInternal<'s, W> {
assert!(n != 0);
if n * BANK_SIZE > self.banks.len() {
self.banks.resize(n * BANK_SIZE, 0.0);
+ println!("resized");
}
Memory::Bank(((self.banks.len() - BANK_SIZE) / BANK_SIZE) as u8)
}