Howdy, just wondering whats the easyest way to shift a high byte into the low byte..
Eg, I've a mutli-d array of numbers (signed short).. 256,512,768,1024... etc, and I want to convert them to 1,2,3,4 etc. (there is no low byte info etc)
sample code
//source is 256,512 (high byte) etc
// converted to 1, 2 etc....
level.fg_data[loop1][loop2] = level1_data[loop1][loop2];
-thanks