ksys: Fix signature of KingEditorComponent::syncData

The buffer needs to be mutable. ActorParamMgr modifies it for example
This commit is contained in:
Léo Lam
2021-04-22 23:36:39 +02:00
parent e631e0dc2b
commit 2015796b80
5 changed files with 6 additions and 6 deletions
@@ -30,7 +30,7 @@ class ActorParamMgr final : public sead::hostio::Node, public KingEditorComponen
public:
const char* getName() const override { return "AglXml"; }
void syncData(const char* data) override;
void syncData(char* data) override;
DebugMessage& getDebugMessage() { return mDebugMessage; }
sead::Heap* getDebugHeap() const { return mDebugHeap; }