Don't tint if colors are default

This commit is contained in:
itsjunetime
2025-06-05 17:20:09 -06:00
parent 8d65f0e3f5
commit f0afd22ff5
3 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ const FILES: [&str; 3] = [
];
const BLACK: i32 = 0;
const WHITE: i32 = 1000;
const WHITE: i32 = i32::from_be_bytes([0, 0xff, 0xff, 0xff]);
fn render_full(c: &mut Criterion) {
for file in FILES {