increment x
This commit is contained in:
parent
3147ad1a60
commit
e1473968b4
1 changed files with 3 additions and 1 deletions
|
@ -338,6 +338,7 @@ void TrueRenderControl::drawImage(Surface &sf, int w, int h,
|
||||||
startx = x;
|
startx = x;
|
||||||
|
|
||||||
for (i = 0, c = 0, e = w*h; i < e; ++i) {
|
for (i = 0, c = 0, e = w*h; i < e; ++i) {
|
||||||
|
printf("%d, %d\n", x, y);
|
||||||
unsigned char alpha = data[i] >> 24;
|
unsigned char alpha = data[i] >> 24;
|
||||||
unsigned char r = data[i];
|
unsigned char r = data[i];
|
||||||
unsigned char g = data[i] >> 8;
|
unsigned char g = data[i] >> 8;
|
||||||
|
@ -359,7 +360,8 @@ void TrueRenderControl::drawImage(Surface &sf, int w, int h,
|
||||||
++y;
|
++y;
|
||||||
x = startx;
|
x = startx;
|
||||||
c = 0;
|
c = 0;
|
||||||
}
|
} else
|
||||||
|
++x;
|
||||||
}
|
}
|
||||||
|
|
||||||
const ScreenInfo *info = display->screenInfo(_screen);
|
const ScreenInfo *info = display->screenInfo(_screen);
|
||||||
|
|
Loading…
Reference in a new issue