From dddc508f2fdaaa854f49bcb95b9a13777f623a1a Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Tue, 16 Dec 2014 00:06:55 -0500 Subject: [PATCH] Fix repetition count in transcript being off by one --- osx/boe.text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osx/boe.text.cpp b/osx/boe.text.cpp index 960089bac..c077fcc80 100644 --- a/osx/boe.text.cpp +++ b/osx/boe.text.cpp @@ -1299,7 +1299,7 @@ void add_string_to_buf(std::string str, unsigned short indent) { last++; } if(is_dup) { - int lastCount = 0; + int lastCount = 1; if(num_pos > 0) sscanf(text_buffer[prev_pointer].line + num_pos, "%d", &lastCount);