diff options
| author | Johan Manuel | 2016-07-26 15:04:54 +0200 |
|---|---|---|
| committer | Johan Manuel | 2016-08-13 13:21:35 +0200 |
| commit | 67b29e3b9ea9630b84477a4bdc71b41b25191872 (patch) | |
| tree | 4f680a0068ba284661ba283e3246eba89fb48302 /modules | |
| parent | 046f94d3acc9d4f6465fe05ae8ee3fbd315b23d2 (diff) | |
| download | godot-67b29e3b9ea9630b84477a4bdc71b41b25191872.tar.gz godot-67b29e3b9ea9630b84477a4bdc71b41b25191872.tar.zst godot-67b29e3b9ea9630b84477a4bdc71b41b25191872.zip | |
Fix some warnings about misleading indentation
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/gdscript/gd_script.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/gdscript/gd_script.h b/modules/gdscript/gd_script.h index f0b6b7103..7b24e200b 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); |
