From 1b70ad2ec64374f75179dc605ea5bae81adf4519 Mon Sep 17 00:00:00 2001 From: Hombre Date: Tue, 14 Feb 2017 01:11:48 +0100 Subject: [PATCH] Bugfix --- rtgui/main-cli.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rtgui/main-cli.cc b/rtgui/main-cli.cc index 1e35e00c6..d92643489 100644 --- a/rtgui/main-cli.cc +++ b/rtgui/main-cli.cc @@ -193,7 +193,7 @@ int main(int argc, char **argv) SetConsoleCtrlHandler( NULL, true ); // Set title of console char consoletitle[128]; - sprintf(consoletitle, "RawTherapee %s Console", VERSION); + sprintf(consoletitle, "RawTherapee %s Console", RTVERSION); SetConsoleTitle(consoletitle); // increase size of screen buffer COORD c; @@ -219,7 +219,7 @@ int main(int argc, char **argv) consoleOpened = true; // printing RT's version in every case, particularly useful for the 'verbose' mode, but also for the batch processing - std::cout << "RawTherapee, version " << VERSION << ", command line" << std::endl; + std::cout << "RawTherapee, version " << RTVERSION << ", command line" << std::endl; std::cout << "WARNING: closing this window will close RawTherapee!" << std::endl << std::endl; } } @@ -230,7 +230,7 @@ int main(int argc, char **argv) int ret = 0; // printing RT's version in all case, particularly useful for the 'verbose' mode, but also for the batch processing - std::cout << "RawTherapee, version " << VERSION << ", command line" << std::endl; + std::cout << "RawTherapee, version " << RTVERSION << ", command line" << std::endl; if (argc > 1) { ret = processLineParams(argc, argv); }