From 76f2bb1e2aafdb06f5d4e2b9395088a26daf561d Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 19 Jun 2008 20:28:26 -0700 Subject: [PATCH 1/1] Print previous score value for a word that's missed. --- mnemon.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mnemon.c b/mnemon.c index 7123464..1dca671 100644 --- a/mnemon.c +++ b/mnemon.c @@ -1039,7 +1039,8 @@ mnemon_handle_response (mnemon_t *mnemon, * negative. */ if (item->score >= 0) { if (item->score > 0) - printf ( " Oops, you knew that, right?\n "); + printf (" Oops, you knew that, right? (%d x)\n ", + item->score); mnemon->unlearned++; /* We go to -2 to force a little extra reinforcement * when re-learning an item, (otherwise, it will often -- 2.43.0