Josh Engebretson 9 years ago
parent
commit
c598776160
1 changed files with 8 additions and 9 deletions
  1. 8 9
      Source/AtomicApp/AppBase.cpp

+ 8 - 9
Source/AtomicApp/AppBase.cpp

@@ -50,14 +50,14 @@ namespace Atomic
         }
         else
         {
-			// Add quotes to any arguments that need them, and construct command line
+            // Add quotes to any arguments that need them, and construct command line
 
-			Vector<String> args = arguments_;
-			for (unsigned i = 0; i < args.Size(); i++)
-			{
-				if (arguments_[i].Contains(" "))
-					args[i] = ToString("\"%s\"", arguments_[i].CString());
-			}
+            Vector<String> args = arguments_;
+            for (unsigned i = 0; i < args.Size(); i++)
+            {
+                if (arguments_[i].Contains(" "))
+                    args[i] = ToString("\"%s\"", arguments_[i].CString());
+            }
 
             String commandline = String::Joined(args, " ");
 
@@ -118,7 +118,7 @@ namespace Atomic
     void AppBase::Start()
     {
         Application::Start();
-        
+
         vm_->InitJSContext();
 
     }
@@ -213,4 +213,3 @@ namespace Atomic
     }
 
 }
-