diff options
author | cc <cc@localhost> | 2025-08-20 22:43:06 -0700 |
---|---|---|
committer | cc <cc@localhost> | 2025-08-20 22:50:10 -0700 |
commit | 68103ad891520db55d8f84a8f938a37aca4f29d4 (patch) | |
tree | b46836b3c1e6dee4bee9ff86aa16f3790766eb71 /src/large_label_format.rs | |
parent | 15df0fec1e368599487e1faeaf8ecebd87980781 (diff) |
Label Combination Routine
Label Refresh Routine
Diffstat (limited to 'src/large_label_format.rs')
-rw-r--r-- | src/large_label_format.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/large_label_format.rs b/src/large_label_format.rs index 5aef6b3..0a5c458 100644 --- a/src/large_label_format.rs +++ b/src/large_label_format.rs @@ -1,4 +1,4 @@ -use crate::{LabelFormat,flood}; +use crate::{LabelFormat,flood_u32}; pub struct LargeLabelFormat { pub buffer: Vec<u32>, @@ -27,7 +27,7 @@ impl LargeLabelFormat { } if output_buffer[index] == 0 { let color = self.buffer[index]; - flood(&self, &mut output_buffer, x, y, color, label); + flood_u32(&self, &mut output_buffer, x, y, color, label); label += 1; } } |