> > paletteTemp[0] = *(paletteGet+0); > paletteTemp[0] = paletteGet[0];
From experience the top-most is faster. Dereferencing something using var[n] makes the compiler add different steps than *(var+n). If I was to optomize this more, I'd turn the lefthand side into pointer references as well... -- Matthew (Darkstorm) Bevan [EMAIL PROTECTED] Margin Software, NECTI. http://www.marginsoftware.com Re-inventing the wheel, every time. - "I'd love to go out with you, but I'm converting my calendar watch from Julian to Gregorian." -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
