Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/DrawableObjectTests/Spritesheet.py
diff options
context:
space:
mode:
authordavesilver <nibor123@gmail.com>2010-07-19 16:00:55 (GMT)
committer davesilver <nibor123@gmail.com>2010-07-19 16:00:55 (GMT)
commit05e50af6404dee8f355310ef6741f9e2788c9b14 (patch)
treefe6daf8c69728c127b631e7fddc7349b6aac4c6c /DrawableObjectTests/Spritesheet.py
parent21d856f2c8b8864c7519ee2f39f09978bdaa2079 (diff)
Updating Tests
Diffstat (limited to 'DrawableObjectTests/Spritesheet.py')
-rwxr-xr-xDrawableObjectTests/Spritesheet.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/DrawableObjectTests/Spritesheet.py b/DrawableObjectTests/Spritesheet.py
index cf9d9bc..0771e59 100755
--- a/DrawableObjectTests/Spritesheet.py
+++ b/DrawableObjectTests/Spritesheet.py
@@ -27,5 +27,5 @@ class Spritesheet:
rect_list = []
for y in range(0, rows):
for x in range(0, cols):
- rect_list.append( (width*x, height*y, width, height, myColorKey) )
- return self.imgsat( rect_list) \ No newline at end of file
+ rect_list.append( (width*x, height*y, width, height,) )
+ return self.imgsat( rect_list, myColorKey) \ No newline at end of file