mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-18 23:21:41 +00:00
- fix typo
This commit is contained in:
parent
b0b4028e0b
commit
763e33badb
1 changed files with 1 additions and 1 deletions
|
@ -681,7 +681,7 @@ struct TVector4
|
||||||
// Test for equality
|
// Test for equality
|
||||||
bool operator== (const TVector4 &other) const
|
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
|
// Test for inequality
|
||||||
|
|
Loading…
Reference in a new issue