diff options
Diffstat (limited to 'lri-study/src')
-rw-r--r-- | lri-study/src/main.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lri-study/src/main.rs b/lri-study/src/main.rs index 3b386e5..ac14c45 100644 --- a/lri-study/src/main.rs +++ b/lri-study/src/main.rs @@ -96,6 +96,12 @@ fn gather() -> ! { Some(SceneMode::Night) => print!("sc:ni "), } + match lri.on_tripod { + None => print!("{} ", "tri".dimmed()), + Some(false) => print!("{} ", "tri".red()), + Some(true) => print!("{} ", "tri".green()), + } + match lri.af_achieved { None => print!("{} - ", "af".dimmed()), Some(false) => print!("{} - ", "af".red()), |