Fixed typo.

This commit is contained in:
Dennis Meinen 2022-10-05 23:11:39 +02:00
parent 11d28d2d5f
commit e0c41f8305

View File

@ -52,7 +52,7 @@ int main(void)
DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE); DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE);
//Red boarder to illustrate how the SVG is centered within the specified dimensions //Red border to illustrate how the SVG is centered within the specified dimensions
DrawRectangleLines((screenWidth / 2 - texture.width / 2) - 1, (screenHeight / 2 - texture.height / 2) - 1, texture.width + 2, texture.height + 2, RED); DrawRectangleLines((screenWidth / 2 - texture.width / 2) - 1, (screenHeight / 2 - texture.height / 2) - 1, texture.width + 2, texture.height + 2, RED);
DrawText("this IS a texture loaded from an SVG file!", 300, 410, 10, GRAY); DrawText("this IS a texture loaded from an SVG file!", 300, 410, 10, GRAY);