diff --git a/src/devices/screen.c b/src/devices/screen.c index b7f3f95..a9e98bb 100644 --- a/src/devices/screen.c +++ b/src/devices/screen.c @@ -31,8 +31,8 @@ screen_2bpp(Uint8 *layer, Uint8 *addr, Uint16 x1, Uint16 y1, Uint16 color, int f int row, w = uxn_screen.width, h = uxn_screen.height, opaque = (color % 5); Uint16 y, ymod = (fy < 0 ? 7 : 0), ymax = y1 + ymod + fy * 8; Uint16 x, xmod = (fx > 0 ? 7 : 0), xmax = x1 + xmod - fx * 8; - for(y = y1 + ymod; y != ymax; y += fy) { - int c = *addr++ | (*(addr + 7) << 8); + for(y = y1 + ymod; y != ymax; y += fy, addr++) { + int c = (addr[8] << 8) | addr[0]; if(y < h) for(x = x1 + xmod, row = y * w; x != xmax; x -= fx, c >>= 1) { Uint8 ch = (c & 1) | ((c >> 7) & 2); diff --git a/src/uxn11.c b/src/uxn11.c index fd9b475..6e91401 100644 --- a/src/uxn11.c +++ b/src/uxn11.c @@ -270,7 +270,7 @@ main(int argc, char **argv) return 0; } if(argv[i][0] == '-' && argv[i][1] == 'v') { - fprintf(stdout, "Uxn11 - Varvara Emulator, 20 Jan 2023.\n"); + fprintf(stdout, "Uxn11 - Varvara Emulator, 14 Feb 2023.\n"); i++; } if(!system_boot(&u, (Uint8 *)calloc(0x10000 * RAM_PAGES, sizeof(Uint8)), argv[i++])) {