mirror of
https://github.com/mkxp-z/mkxp-z.git
synced 2025-08-23 15:23:44 +02:00
Fix typos in binding-sandbox/sandbox-serial-util.h
This commit is contained in:
parent
d383889d4e
commit
290ce15875
1 changed files with 2 additions and 2 deletions
|
@ -268,8 +268,8 @@ namespace mkxp_sandbox {
|
|||
if (!sandbox_deserialize(value.back(), data, max_size)) return false;
|
||||
--size;
|
||||
}
|
||||
for (const T &item : value) {
|
||||
if (!sandbox_serialize(item, data, max_size)) return false;
|
||||
for (T &item : value) {
|
||||
if (!sandbox_deserialize(item, data, max_size)) return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue