Skip to content

Commit 2a8d6f7

Browse files
committed
fix: delegate call translation
1 parent b8e30cf commit 2a8d6f7

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/lcd_v4.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ async fn process_main(
521521
} else {
522522
center_text_layout(&format!(
523523
"{}\n{}",
524-
get_translation(TranslationKey::WAITING_FOR_DELEGATE_HEADER),
524+
get_translation(TranslationKey::CALLING_FOR_DELEGATE_HEADER),
525525
get_translation_params(
526526
TranslationKey::CALLING_FOR_DELEGATE_FOOTER,
527527
&[delegate_remaining],

src/stackmat.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ pub async fn stackmat_task(
156156
state.scene = Scene::Timer;
157157
}
158158
} else if parsed.0 == StackmatTimerState::Stopped {
159+
log::info!("Timer stopped: {}ms", parsed.1);
159160
let mut state = global_state.state.lock().await;
160161
let last_solve_diff = if cfg!(not(any(feature = "e2e", feature = "qa"))) {
161162
state.last_solve_time.unwrap_or(0).abs_diff(parsed.1)

0 commit comments

Comments
 (0)