Compare commits

...

2 commits

Author SHA1 Message Date
7be7c2959c Update Rust crate rusqlite to 0.34.0 2025-03-06 15:02:29 +00:00
2dddb4a5ea Fix ecs changes 2025-03-06 15:37:56 +01:00
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ chrono = { version = "0.4.35", features = ["serde"] }
anyhow = { version = "1.0.86", features = ["backtrace"] }
indexmap = { version = "2.2.6", features = ["rayon"] }
shaderc = { version = "0.8.3", features = ["build-from-source"] }
rusqlite = { version = "0.33.0", features = ["bundled"] }
rusqlite = { version = "0.34.0", features = ["bundled"] }
cgmath = "0.18.0"
http = "1.1.0"
iterchunks = "0.5.0"

View file

@ -156,7 +156,7 @@ impl Scene {
let now = world.now();
if !particle_system.update(now) {
world.remove_entity(entity)?;
world.remove_entity(entity);
return Ok(());
}