mirror of
https://github.com/zeldaret/botw
synced 2026-08-31 17:13:08 -04:00
ksys: Fix signature of KingEditorComponent::syncData
The buffer needs to be mutable. ActorParamMgr modifies it for example
This commit is contained in:
@@ -10,7 +10,7 @@ namespace ksys {
|
||||
class KingEditorComponent {
|
||||
public:
|
||||
virtual const char* getName() const = 0;
|
||||
virtual void syncData(const char* data) = 0;
|
||||
virtual void syncData(char* data) = 0;
|
||||
|
||||
void log(const char* message, void* x = {}, int y = {}) const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user