Author: tack
Date: Fri Dec 22 20:44:59 2006
New Revision: 2284

Modified:
   trunk/display/src/sdl.py

Log:
Wrong import


Modified: trunk/display/src/sdl.py
==============================================================================
--- trunk/display/src/sdl.py    (original)
+++ trunk/display/src/sdl.py    Fri Dec 22 20:44:59 2006
@@ -36,7 +36,7 @@
 import kaa.notifier
 
 # the display module
-import _X11
+import _SDL
 
 class PygameDisplay(object):
     def __init__(self, size):
@@ -77,7 +77,7 @@
         """
         if self._surface:
             # we need to use our tmp surface
-            _X11.image_to_surface(image, self._surface)
+            _SDL.image_to_surface(image, self._surface)
             if areas == None:
                 # copy everything
                 self._screen.blit(self._surface, (0,0))
@@ -87,7 +87,7 @@
                     self._screen.blit(self._surface, pos, pos + size)
         else:
             # copy everything
-            _X11.image_to_surface(image, self._screen)
+            _SDL.image_to_surface(image, self._screen)
 
         # update the screen
         if areas:

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to