diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2024-10-29 09:07:38 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2024-10-29 09:07:38 +1300 |
commit | cbb20c667c8c13fe1d14d1ef146ea0f815e619cc (patch) | |
tree | dcb753230aabfc1beaec032c4e92096080ba1428 /src/bin | |
parent | 1a830a3d1b9d99653322d5ae49ea8165de7ed9d0 (diff) | |
download | bedrock-pc-cbb20c667c8c13fe1d14d1ef146ea0f815e619cc.zip |
Rename --encode-stdin option to --decode-stdin
This more accurately reflects its function.
Diffstat (limited to 'src/bin')
-rw-r--r-- | src/bin/br.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/br.rs b/src/bin/br.rs index b4cf19d..d0ed067 100644 --- a/src/bin/br.rs +++ b/src/bin/br.rs @@ -57,7 +57,7 @@ fn main_run(args: Run) { scale: args.scale(), debug_palette: args.palette(), initial_transmission: None, - encode_stdin: args.encode_stdin, + decode_stdin: args.decode_stdin, encode_stdout: args.encode_stdout, }; let phosphor = Phosphor::new(); @@ -320,8 +320,8 @@ xflags::xflags! { optional -z, --zoom factor: u32 /// Set a debug colour palette in the format <rgb>,... (toggle with F2) optional --palette colours: ParsedPalette - /// Encode standard input - optional -i, --encode-stdin + /// Decode standard input + optional -i, --decode-stdin /// Encode standard output optional -o, --encode-stdout } |