From f4b935d8c664d7c3cdc08a5802306f53a3c35bf1 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 10 Nov 2020 15:03:17 +0900 Subject: [PATCH] Minor tweak to output when using alternate --- src/main.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 2eda1e2..b8e04c8 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -256,7 +256,10 @@ int main(int argc, char **argv) { --argc; ++argv; } - if(isAlt && max > 99) { max = 99; } + if(isAlt) { + printf("Using alternate Korean numbers, "); + if(max > 99) { max = 99; } + } printf("Maximum value is set to %llu\n", max); unsigned long long value;