Fix colorindex
This commit is contained in:
parent
793c86720c
commit
7ff2323dad
@ -47,7 +47,7 @@ void engine_rendertarget_draw_file(char * fpath) {
|
|||||||
int colorindex = 0;
|
int colorindex = 0;
|
||||||
while (y < engine_rendertarget->height) {
|
while (y < engine_rendertarget->height) {
|
||||||
while (x < engine_rendertarget->width) {
|
while (x < engine_rendertarget->width) {
|
||||||
colorindex = x + y * engine_rendertarget->width * 4;
|
colorindex = (x + (y * engine_rendertarget->width)) * 4;
|
||||||
engine_color_set(buffer[colorindex],buffer[colorindex+1],buffer[colorindex+2],buffer[colorindex+3]);
|
engine_color_set(buffer[colorindex],buffer[colorindex+1],buffer[colorindex+2],buffer[colorindex+3]);
|
||||||
engine_rendertarget_draw_point(x,y);
|
engine_rendertarget_draw_point(x,y);
|
||||||
x += 1;
|
x += 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user