29.06.2011, 19:04
(
Последний раз редактировалось RyDeR`; 30.06.2011 в 10:45.
)
The order of both modes are the same, agreed, but what I actually meant is the order of the main order of the bytes itself:
Which should be "1A 2B 3C 4D" as order; that's what I meant with reverse. But that's not very important I think.
pawn Код:
new
byte[4]
;
GetBytes(0x1A2B3C4D, byte[0], byte[1], byte[2], byte[3]);
printf("%02x %02x %02x %02x", byte[0], byte[1], byte[2], byte[3]); // prints "4D 3C 2B 1A"