This commit is contained in:
nora 2023-04-17 19:29:22 +02:00
parent cd807cb33a
commit 09b1a4219b
2 changed files with 51 additions and 0 deletions

44
crash.patch Normal file
View file

@ -0,0 +1,44 @@
diff --git a/src/tiles.rs b/src/tiles.rs
index 4b6288e..5e62b95 100644
--- a/src/tiles.rs
+++ b/src/tiles.rs
@@ -52,6 +52,7 @@ impl Bg {
h: 0,
},
layer: (),
+ blend_graphic: String::new(),
}
}
}
@@ -76,6 +77,7 @@ impl Mid {
h: 32,
}),
},
+ blend_graphic: String::new(),
}
}
}
@@ -92,6 +94,7 @@ impl Fg {
h: 0,
},
layer: (),
+ blend_graphic: String::new(),
}
}
}
@@ -145,6 +148,7 @@ where
pub graphic_name: String,
pub tex_rect: IntRect,
pub layer: Layer::SpecificDef,
+ pub blend_graphic: String,
}
#[derive(Debug, Inspect, Default, Serialize, Deserialize)]
@@ -179,6 +183,7 @@ where
graphic_name: Default::default(),
tex_rect: Default::default(),
layer: Layer::SpecificDef::default(),
+ blend_graphic: String::new(),
}
}
}