mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 20:25:39 +00:00
Fixed issue [#1895]: "Vector3d.Equals(object obj) defined in terms of Vector3, not Vector3d".
This commit is contained in:
parent
8e88dbb352
commit
8be8190ee8
|
@ -1364,10 +1364,10 @@ namespace OpenTK
|
|||
/// <returns>True if the instances are equal; false otherwise.</returns>
|
||||
public override bool Equals(object obj)
|
||||
{
|
||||
if (!(obj is Vector3))
|
||||
if (!(obj is Vector3d))
|
||||
return false;
|
||||
|
||||
return this.Equals((Vector3)obj);
|
||||
return this.Equals((Vector3d)obj);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
|
Loading…
Reference in a new issue