summaryrefslogtreecommitdiff
path: root/modules/mono/glue/Managed
diff options
context:
space:
mode:
authorRomanAkberov <r.k.akberov@gmail.com>2019-02-19 01:01:05 +0700
committerRomanAkberov <r.k.akberov@gmail.com>2019-02-19 01:01:05 +0700
commit041a7bbeba0162138f69d38abe5ceba80641c854 (patch)
treeb1bca70a8f84a445289acfafea8d24e3b91cbdf2 /modules/mono/glue/Managed
parent049bb75f9e9472fc5a46424412bc193e689ddf63 (diff)
C#: fix Quat.Equals.
Diffstat (limited to 'modules/mono/glue/Managed')
-rw-r--r--modules/mono/glue/Managed/Files/Quat.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/glue/Managed/Files/Quat.cs b/modules/mono/glue/Managed/Files/Quat.cs
index fd1ac01083..d4dcff583a 100644
--- a/modules/mono/glue/Managed/Files/Quat.cs
+++ b/modules/mono/glue/Managed/Files/Quat.cs
@@ -347,9 +347,9 @@ namespace Godot
public override bool Equals(object obj)
{
- if (obj is Vector2)
+ if (obj is Quat)
{
- return Equals((Vector2)obj);
+ return Equals((Quat)obj);
}
return false;