Skip to content

Commit

Permalink
More tweaks for the repro
Browse files Browse the repository at this point in the history
  • Loading branch information
farnoy committed Mar 9, 2022
1 parent d34e85d commit 96059a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ opt-level = 3

[profile.dev]
opt-level = 1
debug = false # to speedup incremental compilaton, uncomment to use a debugger
debug = true # to speedup incremental compilaton, uncomment to use a debugger
panic = "abort"
lto = "off"

Expand Down
2 changes: 1 addition & 1 deletion src/ecs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ pub(crate) mod systems {
dump_graphs
});

if dump_graphs.unwrap_or(false) {
if false && dump_graphs.unwrap_or(false) {
if let Err(e) = submissions.dump_live_graphs() {
eprintln!("dump_live_graphs() ERROR: {}", e);
}
Expand Down

0 comments on commit 96059a0

Please sign in to comment.