Skip to content

Commit

Permalink
No v1 in filenames
Browse files Browse the repository at this point in the history
  • Loading branch information
fintelia committed Apr 8, 2023
1 parent 834352c commit fed0dea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ fn main() {
255,
])
});
img.save(format!("cubemap-v1-{SIZE}x{SIZE}.png")).unwrap();
img.save(format!("cubemap-{SIZE}x{SIZE}.png")).unwrap();

let mut img2 = image::ImageBuffer::new(4 * SIZE as u32, 3 * SIZE as u32);
for (i, (x, y)) in [(2, 1), (0, 1), (1, 0), (1, 2), (3, 1), (1, 1)]
Expand All @@ -175,5 +175,5 @@ fn main() {
SIZE as i64 * y,
);
}
img2.save(format!("net-v1-{SIZE}x{SIZE}.png")).unwrap();
img2.save(format!("net-{SIZE}x{SIZE}.png")).unwrap();
}

0 comments on commit fed0dea

Please # to comment.