From a308af1cd84185989f1262ba66b01f6a9ceafa6a Mon Sep 17 00:00:00 2001 From: Your Name Date: Mon, 9 Nov 2020 10:28:06 -0500 Subject: Fixed a bug with NT only translations displaying invalid OT text --- bible.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bible.cc') diff --git a/bible.cc b/bible.cc index 3388364..0bcd9f1 100644 --- a/bible.cc +++ b/bible.cc @@ -188,7 +188,7 @@ int main(int argc, char* argv[]) { bool isNewline = true; for(auto tex : text) { if(!omitVerseNums && tex.chapter != chapter) { - printf("\nChapter %d:\n", tex.chapter); + printf("\n%s Chapter %d:\n", tex.book.c_str(), tex.chapter); } bool isParagraph = false; bool isIndent = false; -- cgit v1.2.3