summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-09-18 21:10:03 +0100
committerCarl Hetherington <cth@carlh.net>2014-09-18 21:10:03 +0100
commit3d76d307d46286c803db20f52ac335606f2f8fe8 (patch)
tree013452a18230c87c5471d86f16ed321aa0352e17 /src/tools
parentd235e54ec3ee9a187c1f776c834b28ed2ae5e752 (diff)
Print a message when starting up with the windows console.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc
index e429b7a9d..8a0aa245e 100644
--- a/src/tools/dcpomatic.cc
+++ b/src/tools/dcpomatic.cc
@@ -73,8 +73,6 @@ using std::exception;
using boost::shared_ptr;
using boost::dynamic_pointer_cast;
-// #define DCPOMATIC_WINDOWS_CONSOLE 1
-
class FilmChangedDialog
{
public:
@@ -159,6 +157,8 @@ public:
FILE* hf_in = _fdopen(hCrt, "r");
setvbuf(hf_in, NULL, _IONBF, 128);
*stdin = *hf_in;
+
+ cout << "DCP-o-matic is starting." << "\n";
}
#endif