This commit is contained in:
Simon Gardling
2021-03-31 13:36:46 -04:00
parent 6591de7dec
commit b5bc14faa3
7 changed files with 68 additions and 70 deletions

View File

@@ -9,11 +9,11 @@ pub struct ImgData {
impl Clone for ImgData {
fn clone(&self) -> ImgData {
return ImgData {
ImgData {
grids: self.grids.clone(),
palette: self.palette.clone(),
iteration: self.iteration.clone(),
};
palette: self.palette,
iteration: self.iteration,
}
}
}