summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorJohan Manuel <johan.manuel@live.fr>2016-07-26 15:04:54 +0200
committerJohan Manuel <johan.manuel@live.fr>2016-08-13 13:21:35 +0200
commit67b29e3b9ea9630b84477a4bdc71b41b25191872 (patch)
tree4f680a0068ba284661ba283e3246eba89fb48302 /modules
parent046f94d3acc9d4f6465fe05ae8ee3fbd315b23d2 (diff)
Fix some warnings about misleading indentation
Diffstat (limited to 'modules')
-rw-r--r--modules/gdscript/gd_script.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/gd_script.h b/modules/gdscript/gd_script.h
index f0b6b7103c..7b24e200b6 100644
--- a/modules/gdscript/gd_script.h
+++ b/modules/gdscript/gd_script.h
@@ -330,8 +330,8 @@ public:
virtual Vector<StackInfo> debug_get_current_stack_info() {
- if (Thread::get_main_ID()!=Thread::get_caller_ID())
- return Vector<StackInfo>();
+ if (Thread::get_main_ID()!=Thread::get_caller_ID())
+ return Vector<StackInfo>();
Vector<StackInfo> csi;
csi.resize(_debug_call_stack_pos);