summaryrefslogtreecommitdiff
path: root/modules/mono/glue/cs_files/GD.cs
diff options
context:
space:
mode:
authorXavier Cho <mysticfallband@gmail.com>2018-04-17 07:53:27 +0900
committerXavier Cho <mysticfallband@gmail.com>2018-04-17 07:53:27 +0900
commit6b611e64316ed91b89822a3b660cdedc087a1da9 (patch)
tree92ec832ed0f044d891df57cb26a7c29c9360c210 /modules/mono/glue/cs_files/GD.cs
parente59fad39245de82cb243da38ba149ccd0ed957e5 (diff)
#18051: Fix indentation issues introduced during clean up
Diffstat (limited to 'modules/mono/glue/cs_files/GD.cs')
-rw-r--r--modules/mono/glue/cs_files/GD.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mono/glue/cs_files/GD.cs b/modules/mono/glue/cs_files/GD.cs
index 2384bc1432..ec1534cb9a 100644
--- a/modules/mono/glue/cs_files/GD.cs
+++ b/modules/mono/glue/cs_files/GD.cs
@@ -135,7 +135,7 @@ namespace Godot
if (increment > 0)
{
- int idx = 0;
+ int idx = 0;
for (int i = from; i < to; i += increment)
{
ret[idx++] = i;
@@ -143,7 +143,7 @@ namespace Godot
}
else
{
- int idx = 0;
+ int idx = 0;
for (int i = from; i > to; i += increment)
{
ret[idx++] = i;