[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

Re: [pygame] Simple Surfarray Alpha



A final note, savespace is not portable. Numpy arrays don't have it. So use a

try:
   array.savespace(1)
except AttributeError:
   pass

Lenard

Ian Mallett wrote:
I thought it might be Numeric/NumPy crashing. Adding that line seems to fix the problem; thanks.
Ian