Small cleanup
diff --git a/sparse_strips/vello_common/src/strip_generator.rs b/sparse_strips/vello_common/src/strip_generator.rs
index a471a4c..02998be 100644
--- a/sparse_strips/vello_common/src/strip_generator.rs
+++ b/sparse_strips/vello_common/src/strip_generator.rs
@@ -154,16 +154,15 @@
             self.row_winding.fill(0);
         }
 
-        let detected_cull_opportunity;
         if self.use_early_culling {
-            detected_cull_opportunity = self.tiles.make_tiles_analytic_aa::<true>(
+            self.use_early_culling = self.tiles.make_tiles_analytic_aa::<true>(
                 &self.line_buf,
                 self.width,
                 self.height,
                 &mut self.row_winding,
             )
         } else {
-            detected_cull_opportunity = self.tiles.make_tiles_analytic_aa::<false>(
+            self.use_early_culling = self.tiles.make_tiles_analytic_aa::<false>(
                 &self.line_buf,
                 self.width,
                 self.height,
@@ -171,9 +170,6 @@
             )
         };
 
-        self.use_early_culling = detected_cull_opportunity;
-        //self.use_early_culling = false;
-
         self.tiles.sort_tiles();
 
         if let Some(clip_path) = clip_path {