program.c: sign error (non-fatal but annoying)

This commit is contained in:
Christian Kroll 2014-05-22 19:17:28 +02:00
parent 97f93a4a4c
commit e10166a316
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ void random_bright(unsigned int cycles) {
for (unsigned char y = NUM_ROWS; y--;) {
for (unsigned char x = LINEBYTES; x--;) {
if (p < (NUMPLANE - 1)) {
pixmap[p][y][x] |= pixmap[p - 1][y][x];
pixmap[p][y][x] |= pixmap[p + 1][y][x];
}
pixmap[p][y][x] = random8();
}