mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- fix typo
This commit is contained in:
parent
0f184a0f28
commit
ef30ddbd40
1 changed files with 1 additions and 1 deletions
|
@ -681,7 +681,7 @@ struct TVector4
|
|||
// Test for equality
|
||||
bool operator== (const TVector4 &other) const
|
||||
{
|
||||
return X == other.X && Y == other.Y && Z == other.Z && W = other.W;
|
||||
return X == other.X && Y == other.Y && Z == other.Z && W == other.W;
|
||||
}
|
||||
|
||||
// Test for inequality
|
||||
|
|
Loading…
Reference in a new issue