From c0ef5e2a15bd7490838996d68d4957835de5542c Mon Sep 17 00:00:00 2001 From: David Capello Date: Thu, 30 Nov 2017 11:54:50 -0300 Subject: [PATCH] Remove unused variable from Sprite_set_colorMode() --- src/app/script/sprite_class.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/script/sprite_class.cpp b/src/app/script/sprite_class.cpp index ff1bd8543..c881d90be 100644 --- a/src/app/script/sprite_class.cpp +++ b/src/app/script/sprite_class.cpp @@ -238,8 +238,8 @@ void Sprite_get_colorMode(script::ContextHandle handle) void Sprite_set_colorMode(script::ContextHandle handle) { script::Context ctx(handle); - auto wrap = (SpriteWrap*)ctx.toUserData(0, kTag); // TODO + // auto wrap = (SpriteWrap*)ctx.toUserData(0, kTag); ctx.pushUndefined(); }