diff gamelib/scenes/bridge.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 4012d50a4674
children 7b07ffc37ec0
line wrap: on
line diff
--- a/gamelib/scenes/bridge.py	Sat Aug 28 01:22:44 2010 +0200
+++ b/gamelib/scenes/bridge.py	Sat Aug 28 01:32:54 2010 +0200
@@ -142,7 +142,7 @@
     "Used for cracking safes. Found on the doctor on the chair"
 
     INVENTORY_IMAGE = 'stethoscope.png'
-    CURSOR = CursorSprite('stethoscope.png', 29, 27)
+    CURSOR = CursorSprite('stethoscope.png')
 
 
 class StethoscopeThing(Thing):
@@ -172,7 +172,7 @@
     "Used for connecting high-powered parts of the ship up"
 
     INVENTORY_IMAGE = 'superconductor_fixed.png'
-    CURSOR = CursorSprite('superconductor_fixed.png', 20, 20)
+    CURSOR = CursorSprite('superconductor_fixed.png')
 
 
 class SuperconductorThing(Thing):