#8338 - Eats - Tue Jul 08, 2003 5:55 pm
I'm trying to cast a s16 to a s32, and no, this doesn't work:
s16 x = 5;
s32 y;
y = x;
This also doesn't work:
y = (s32)x;
So what does work?
s16 x = 5;
s32 y;
y = x;
This also doesn't work:
y = (s32)x;
So what does work?