On Sunday, 13 July 2014 at 18:48:01 UTC, Alexandre wrote:
char image[0x800];
Better use `ubyte[0x800] image` here. `char[]` is only for UTF-8 strings.
On Sunday, 13 July 2014 at 18:48:01 UTC, Alexandre wrote:
char image[0x800];
Better use `ubyte[0x800] image` here. `char[]` is only for UTF-8 strings.