pombreda / pgreloaded

Automatically exported from code.google.com/p/pgreloaded
Other
0 stars 0 forks source link

colorpalettes.py example broken #8

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
colorpalettes.py line 26 needs to be changed 
from: 
rw = width / len(palette)
to:
rw = width // len(palette)

or it will crash with python3 at
line 27: rect = sdlrect.SDL_Rect(0, 0, rw, height)
which expects an int but receives a float

Original issue reported on code.google.com by demonicm...@googlemail.com on 24 Apr 2012 at 2:07

GoogleCodeExporter commented 9 years ago
Fixed in changeset 57:3f7bce1033b6. Thanks!

Original comment by marcusvonappen@googlemail.com on 24 Apr 2012 at 4:16