From 416a9cec58b503c6f0d05884ac93a4a50971e62c Mon Sep 17 00:00:00 2001
From: jsiegle <jsiegle@mit.edu>
Date: Thu, 30 Jan 2014 21:09:55 -0500
Subject: [PATCH] Print command-line input to std::cout

---
 Source/Main.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Source/Main.cpp b/Source/Main.cpp
index 06b914a81..e7043fc98 100644
--- a/Source/Main.cpp
+++ b/Source/Main.cpp
@@ -55,8 +55,12 @@ public:
     //==============================================================================
     void initialise(const String& commandLine)
     {
+
+        std::cout << commandLine << std::endl;
+
         StringArray parameters;
         parameters.addTokens(commandLine," ","\"");
+
 #ifdef WIN32
         //glWinInit();
 
-- 
GitLab