Bugfix
This commit is contained in:
@@ -193,7 +193,7 @@ int main(int argc, char **argv)
|
|||||||
SetConsoleCtrlHandler( NULL, true );
|
SetConsoleCtrlHandler( NULL, true );
|
||||||
// Set title of console
|
// Set title of console
|
||||||
char consoletitle[128];
|
char consoletitle[128];
|
||||||
sprintf(consoletitle, "RawTherapee %s Console", VERSION);
|
sprintf(consoletitle, "RawTherapee %s Console", RTVERSION);
|
||||||
SetConsoleTitle(consoletitle);
|
SetConsoleTitle(consoletitle);
|
||||||
// increase size of screen buffer
|
// increase size of screen buffer
|
||||||
COORD c;
|
COORD c;
|
||||||
@@ -219,7 +219,7 @@ int main(int argc, char **argv)
|
|||||||
consoleOpened = true;
|
consoleOpened = true;
|
||||||
|
|
||||||
// printing RT's version in every case, particularly useful for the 'verbose' mode, but also for the batch processing
|
// 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;
|
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;
|
int ret = 0;
|
||||||
|
|
||||||
// printing RT's version in all case, particularly useful for the 'verbose' mode, but also for the batch processing
|
// 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) {
|
if (argc > 1) {
|
||||||
ret = processLineParams(argc, argv);
|
ret = processLineParams(argc, argv);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user