This commit is contained in:
Hombre
2017-02-14 01:11:48 +01:00
parent fe83cc8134
commit 1b70ad2ec6

View File

@@ -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);
}