From 70426751f85e9986b063b73aa8aa792b9773329b Mon Sep 17 00:00:00 2001 From: mcguirepr89 Date: Sat, 31 Aug 2024 17:47:15 -0400 Subject: [PATCH] negative toggle was only for first_num -- fixed --- movement/watch_faces/complication/simple_calculator_face.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/movement/watch_faces/complication/simple_calculator_face.c b/movement/watch_faces/complication/simple_calculator_face.c index 95804ced..3542590d 100644 --- a/movement/watch_faces/complication/simple_calculator_face.c +++ b/movement/watch_faces/complication/simple_calculator_face.c @@ -321,7 +321,7 @@ bool simple_calculator_face_loop(movement_event_t event, movement_settings_t *se break; case MODE_ENTERING_SECOND_NUM: // toggle negative on state->second_num - state->first_num.negative = !state->first_num.negative; + state->second_num.negative = !state->second_num.negative; break; case MODE_ERROR: reset_from_error(state);