diff gamelib/scenes/crew_quarters.py @ 302:6d93e04036c9

CursorSprite: Default pointer-position to the centre of the cursor
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 28 Aug 2010 01:32:54 +0200
parents 13b6fbfb39aa
children e1cae2b61443
line wrap: on
line diff
--- a/gamelib/scenes/crew_quarters.py	Sat Aug 28 01:22:44 2010 +0200
+++ b/gamelib/scenes/crew_quarters.py	Sat Aug 28 01:32:54 2010 +0200
@@ -127,14 +127,14 @@
     "A bowl. Sans fish."
 
     INVENTORY_IMAGE = 'fishbowl.png'
-    CURSOR = CursorSprite('fishbowl.png', 29, 27)
+    CURSOR = CursorSprite('fishbowl.png')
 
 
 class DuctTape(Item):
     "A bowl. Sans fish."
 
     INVENTORY_IMAGE = 'duct_tape.png'
-    CURSOR = CursorSprite('duct_tape.png', 29, 27)
+    CURSOR = CursorSprite('duct_tape.png')
 
 
 class SafeDetail(Scene):