Update of /cvsroot/freevo/freevo/src
In directory sc8-pr-cvs1:/tmp/cvs-serv19463

Modified Files:
        osd.py 
Log Message:
Another warning. Make sure we use int where it's required.


Index: osd.py
===================================================================
RCS file: /cvsroot/freevo/freevo/src/osd.py,v
retrieving revision 1.84
retrieving revision 1.85
diff -C2 -d -r1.84 -r1.85
*** osd.py      26 Aug 2003 20:19:25 -0000      1.84
--- osd.py      1 Sep 2003 14:02:16 -0000       1.85
***************
*** 11,14 ****
--- 11,17 ----
  # -----------------------------------------------------------------------
  # $Log$
+ # Revision 1.85  2003/09/01 14:02:16  outlyer
+ # Another warning. Make sure we use int where it's required.
+ #
  # Revision 1.84  2003/08/26 20:19:25  outlyer
  # Found the cause of the hang when initializing Freevo; Freevo was hanging
***************
*** 648,652 ****
              w = x1 - x0
              h = y1 - y0
!             box = pygame.Surface((w, h))
              box.fill((r,g,b))
              box.set_alpha(a)
--- 651,655 ----
              w = x1 - x0
              h = y1 - y0
!             box = pygame.Surface((int(w), int(h)))
              box.fill((r,g,b))
              box.set_alpha(a)




-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Freevo-cvslog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to