diff options
author | Genevieve Alfirevic <gen@nyble.dev> | 2022-04-05 04:48:36 -0500 |
---|---|---|
committer | Genevieve Alfirevic <gen@nyble.dev> | 2022-04-05 04:48:36 -0500 |
commit | 6e12de4faa129ebe0f0e46ede46c1780bb23a315 (patch) | |
tree | 756a48b368300edaceff926951050e4aa3515765 /gifprobe/src/main.rs | |
parent | 4849e9cd5dca472997b239a4dcd697a829196070 (diff) | |
download | gifed-6e12de4faa129ebe0f0e46ede46c1780bb23a315.tar.gz gifed-6e12de4faa129ebe0f0e46ede46c1780bb23a315.zip |
Add screenpacked abstraction over u8
Diffstat (limited to 'gifprobe/src/main.rs')
-rw-r--r-- | gifprobe/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gifprobe/src/main.rs b/gifprobe/src/main.rs index c6bc0f8..241c421 100644 --- a/gifprobe/src/main.rs +++ b/gifprobe/src/main.rs @@ -24,7 +24,7 @@ fn main() { gif.screen_descriptor.height.yellow() ); - if gif.screen_descriptor.color_table_present() { + if gif.screen_descriptor.has_color_table() { println!( "\tGlobal Color Table Present {}\n\tGlobal Color Table Size {}", "Yes".green(), |