mirror of
https://github.com/raysan5/raylib.git
synced 2026-02-01 19:59:17 -05:00
Replace tabs with spaces and update year of copyright notices (#927)
* Update year of copyright notices
* Fix mistake in comment
* Fix typo ("algorythms")
* Replace tabs with spaces
* Remove trailing whitespace and fix mistake in comment
* Fix ExportImageAsCode missing comment rectangle corner
* Replace tab with spaces
* Replace tabs with spaces
This commit is contained in:
@ -271,11 +271,11 @@ static void DrawLifes(void)
|
||||
{
|
||||
if (player.numLifes != 0)
|
||||
{
|
||||
Vector2 position = { 20, GetScreenHeight() - texLife.height - 20 };
|
||||
|
||||
Vector2 position = { 20, GetScreenHeight() - texLife.height - 20 };
|
||||
|
||||
for(int i = 0; i < player.numLifes; i++)
|
||||
{
|
||||
DrawTexture(texLife, position.x + i*texLife.width, position.y, Fade(RAYWHITE, 0.7f));
|
||||
DrawTexture(texLife, position.x + i*texLife.width, position.y, Fade(RAYWHITE, 0.7f));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user