fox32: revert changes to release profile, switched back to step

This commit is contained in:
Lua MacDougall 2022-05-12 15:08:36 -07:00 committed by Ry
parent e6b74a3ae0
commit 81ccead64c
2 changed files with 1 additions and 5 deletions

View File

@ -20,7 +20,3 @@ winit_input_helper = "0.11"
[build-dependencies] [build-dependencies]
anyhow = "1.0" anyhow = "1.0"
vergen = { version = "6", default-features = false, features = ["build", "git"] } vergen = { version = "6", default-features = false, features = ["build", "git"] }
[profile.release]
opt-level = 3
lto = "fat"

View File

@ -61,7 +61,7 @@ impl Runtime for fox32core::State {
} }
fn step(&mut self) { fn step(&mut self) {
if let Some(error) = fox32core::State::resume(self, 8192) { if let Some(error) = fox32core::State::step(self) {
panic!("fox32core failed to execute next instruction: {}", error); panic!("fox32core failed to execute next instruction: {}", error);
} }
} }