Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/utility/aglParameter.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class ParameterBase {
const sead::hostio::PropertyEvent* event);
#endif

virtual void writeToXML(sead::XmlElement* element, sead::Heap* heap);
virtual void writeToXML(sead::XmlElement* element, sead::Heap* heap) const;
virtual bool readFromXML(const sead::XmlElement& element, bool x);

virtual ParameterType getParameterType() const = 0;
Expand Down Expand Up @@ -377,7 +377,7 @@ class ParameterCurve : public ParameterBase {
bool copy(const ParameterBase& other) override;
void copyUnsafe(const ParameterBase& other) override;

void writeToXML(sead::XmlElement* element, sead::Heap* heap) override;
void writeToXML(sead::XmlElement* element, sead::Heap* heap) const override;
bool readFromXML(const sead::XmlElement& element, bool x) override;

ParameterType getParameterType() const override;
Expand Down
Loading