2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 08:27:43 +00:00

bug fixes with MP1's spec

This commit is contained in:
Jack Andersen
2015-07-11 18:26:26 -10:00
parent c1f4f31e6f
commit 975429f3c6
8 changed files with 37 additions and 26 deletions

View File

@@ -31,7 +31,7 @@ class UniqueID32 : public BigDNA
public:
Delete expl;
inline void read(Athena::io::IStreamReader& reader)
{reader.readUint32();}
{m_id = reader.readUint32();}
inline void write(Athena::io::IStreamWriter& writer) const
{writer.writeUint32(m_id);}
@@ -53,7 +53,7 @@ class UniqueID64 : public BigDNA
public:
Delete expl;
inline void read(Athena::io::IStreamReader& reader)
{reader.readUint64();}
{m_id = reader.readUint64();}
inline void write(Athena::io::IStreamWriter& writer) const
{writer.writeUint64(m_id);}