update Xcode
This commit is contained in:
@@ -465,14 +465,14 @@ public:
|
||||
}
|
||||
virtual bool read(BinaryStreamReader& r) override
|
||||
{
|
||||
x = r.ru32();
|
||||
y = r.ru32();
|
||||
x = r.ru16();
|
||||
y = r.ru16();
|
||||
return true;
|
||||
}
|
||||
virtual void write(BinaryStreamWriter& w) const override
|
||||
{
|
||||
w.wu32(x);
|
||||
w.wu32(y);
|
||||
w.wu16(x);
|
||||
w.wu16(y);
|
||||
}
|
||||
};
|
||||
struct Channel : public Type
|
||||
@@ -526,6 +526,7 @@ public:
|
||||
r.skip(length - 23);
|
||||
return true;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
virtual void write(BinaryStreamWriter& w) const override
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user