From d7ba0b851cb002c756428a788111871aa223c743 Mon Sep 17 00:00:00 2001 From: Pubby Date: Fri, 8 Dec 2023 21:24:31 -0600 Subject: [PATCH] Mention ISA=legal on --version --- src/main.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 73988a8b..65776a14 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -353,8 +353,12 @@ int main(int argc, char** argv) if(vm.count("version")) { - std::cout << "NesFab " << VERSION << " (" << GIT_COMMIT << ", " << __DATE__ << ")\n"; + std::cout << "NesFab " << VERSION << " (" << GIT_COMMIT << ", " << __DATE__ << ")"; +#ifdef LEGAL + std::cout << " (ISA=legal)"; +#endif std::cout << + "\n" "Copyright (C) 2023, Patrick Bene\n" "This is free software. " "There is no warranty.\n";