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/emulators.rs | |
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/emulators.rs')
-rw-r--r-- | src/emulators.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emulators.rs b/src/emulators.rs index 68bf0ce..a2e9091 100644 --- a/src/emulators.rs +++ b/src/emulators.rs @@ -22,6 +22,6 @@ pub struct EmulatorConfig { pub debug_palette: Option<[Colour; 16]>, pub initial_transmission: Option<Vec<u8>>, - pub encode_stdin: bool, + pub decode_stdin: bool, pub encode_stdout: bool, } |