Fixed not needed calculation in test program.
This commit is contained in:
parent
ce7104f384
commit
8c7a005cbd
1 changed files with 1 additions and 2 deletions
|
@ -39,7 +39,7 @@ DrawChessBoard(SDL_Renderer * renderer)
|
||||||
for( ; row < 8; row++)
|
for( ; row < 8; row++)
|
||||||
{
|
{
|
||||||
column = row%2;
|
column = row%2;
|
||||||
x = x + column;
|
x = column;
|
||||||
for( ; column < 4+(row%2); column++)
|
for( ; column < 4+(row%2); column++)
|
||||||
{
|
{
|
||||||
SDL_SetRenderDrawColor(renderer, 0, 0, 0, 0xFF);
|
SDL_SetRenderDrawColor(renderer, 0, 0, 0, 0xFF);
|
||||||
|
@ -51,7 +51,6 @@ DrawChessBoard(SDL_Renderer * renderer)
|
||||||
x = x + 2;
|
x = x + 2;
|
||||||
SDL_RenderFillRect(renderer, &rect);
|
SDL_RenderFillRect(renderer, &rect);
|
||||||
}
|
}
|
||||||
x=0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue