(draw.c)(minor) Replaced a level width instance by the corresponding macro

This commit is contained in:
KikooDX 2020-03-10 09:33:38 +01:00
parent 5bab9f4e61
commit 9a29fb2ea2
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ void erase_tile(int x, int y, char level[])
{
x = (int)(x/16);
y = (int)(y/16);
level[x + y * 28] = '.';
level[x + y * LEVEL_WIDTH] = '.';
x *= 16;
y *= 16;
drect(x + DRAW_OFFSET_X, y + DRAW_OFFSET_Y,