Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-11-18 17:50:17 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-11-18 17:50:17 (GMT)
commitd74c58100adf5e7d26f613d1b20bc23731834af3 (patch)
treeac2cedb03a62c1e98189cd3b01b972b427175e57
parent59e689e29fa97fba181dc4d61236036ab5430289 (diff)
removed unnecessary call to draw in Cairo version of sprites library
-rw-r--r--sprite_factory.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/sprite_factory.py b/sprite_factory.py
index 08adcb9..5dd8e02 100644
--- a/sprite_factory.py
+++ b/sprite_factory.py
@@ -5,10 +5,9 @@
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the
-# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-# Boston, MA 02111-1307, USA.
+# You should have received a copy of the GNU General Public License
+# along with this library; if not, write to the Free Software
+# Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA
import pygtk
pygtk.require('2.0')
@@ -35,7 +34,6 @@ class Stator():
def draw(self, layer=1000):
self.spr.set_layer(layer)
- self.spr.draw()
def match(self, sprite):
if self.spr == sprite: