Parcourir la source

Removed unnecessary parameter in a simObject getter method

Lukas Jørgensen il y a 12 ans
Parent
commit
9fbdf64bd9
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  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; }