Browse Source

Removed unnecessary parameter in a simObject getter method

Lukas Jørgensen 11 years ago
parent
commit
9fbdf64bd9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Engine/source/console/simObject.h

+ 1 - 1
Engine/source/console/simObject.h

@@ -781,7 +781,7 @@ class SimObject: public ConsoleObject
       void setCanSaveDynamicFields( bool bCanSave ) { mCanSaveFieldDictionary	=	bCanSave; }
       
       /// Get whether fields created at runtime should be saved. Default is true.
-      bool getCanSaveDynamicFields( bool bCanSave ) { return mCanSaveFieldDictionary;}
+      bool getCanSaveDynamicFields( ) { return mCanSaveFieldDictionary;}
 
       /// Return the object that this object is copying fields from.
       SimObject* getCopySource() const { return mCopySource; }