rename variable

This commit is contained in:
Milang 2019-10-25 20:35:12 +02:00
parent f32a2bc7b6
commit 33c45d0718
1 changed files with 1 additions and 1 deletions

View File

@ -86,5 +86,5 @@ void fe_bitmap_display_px(const fe_bitmap * bmp, uint32_t bmp_x, uint32_t bmp_y,
{
uint8_t color = fe_texture_get_pixel_r(bmp, bmp_x, bmp_y);
if (color)
dpixel(x, y, 3 * (color % 2));
dpixel(scr_x, scr_y, 3 * (color % 2));
}