diff options
author | Kermer <Kermer@users.noreply.github.com> | 2015-06-24 23:24:44 +0200 |
---|---|---|
committer | Kermer <Kermer@users.noreply.github.com> | 2015-06-24 23:24:44 +0200 |
commit | 32d4b4128c236e7d858f2bb8817ec9d04dfab1c0 (patch) | |
tree | 0b931a82e86402cc254fae9f96cd53b703b6c061 | |
parent | 52308aba68516d4b4ca29a176d6053cf3f623ce4 (diff) |
Tiny typo
COPY_MODE_DISALED -> COPY_MODE_DISABLED
-rw-r--r-- | scene/2d/back_buffer_copy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/2d/back_buffer_copy.cpp b/scene/2d/back_buffer_copy.cpp index 245b3ba7eb..7a138830db 100644 --- a/scene/2d/back_buffer_copy.cpp +++ b/scene/2d/back_buffer_copy.cpp @@ -4,7 +4,7 @@ void BackBufferCopy::_update_copy_mode() { switch(copy_mode) { - case COPY_MODE_DISALED: { + case COPY_MODE_DISABLED: { VS::get_singleton()->canvas_item_set_copy_to_backbuffer(get_canvas_item(),false,Rect2()); } break; @@ -58,7 +58,7 @@ void BackBufferCopy::_bind_methods() { ADD_PROPERTY( PropertyInfo(Variant::INT,"copy_mode",PROPERTY_HINT_ENUM,"Disabled,Rect,Viewport"),_SCS("set_copy_mode"),_SCS("get_copy_mode")); ADD_PROPERTY( PropertyInfo(Variant::RECT2,"rect"),_SCS("set_rect"),_SCS("get_rect")); - BIND_CONSTANT( COPY_MODE_DISALED ); + BIND_CONSTANT( COPY_MODE_DISABLED ); BIND_CONSTANT( COPY_MODE_RECT ); BIND_CONSTANT( COPY_MODE_VIEWPORT ); |