2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 21:07:42 +00:00

Symbol correct function/variable names

This commit is contained in:
2016-04-27 21:52:41 -07:00
parent c55db47941
commit 0df9ffd56d
9 changed files with 28 additions and 15 deletions

View File

@@ -4,14 +4,14 @@ namespace urde
{
CPOINode::CPOINode(const std::string& name, u16 a, const CCharAnimTime& time,
u32 index, bool c, float d, u32 e, u32 f)
u32 index, bool c, float weight, u32 e, u32 f)
: x4_(1),
x8_name(name),
x18_(a),
x1c_time(time),
x24_index(index),
x28_(c),
x2c_(d),
x2c_weight(weight),
x30_(e),
x34_(f)
{}
@@ -23,7 +23,7 @@ CPOINode::CPOINode(CInputStream& in)
x1c_time(in),
x24_index(in.readUint32Big()),
x28_(in.readBool()),
x2c_(in.readFloatBig()),
x2c_weight(in.readFloatBig()),
x30_(in.readUint32Big()),
x34_(in.readUint32Big())
{}