Update to 4.5-dev

This commit is contained in:
Not-Nik 2023-01-23 22:07:43 +01:00
parent 63ea851d66
commit 1e06706bff
Failed to generate hash of commit
9 changed files with 50 additions and 47 deletions

View file

@ -39,7 +39,7 @@ pub fn main() anyerror!void
rl.DrawRectangle(screenWidth/2 - 40, @floatToInt(c_int, boxPositionY), 80, 80, rl.MAROON);
rl.DrawText("Use mouse wheel to move the cube up and down!", 10, 10, 20, rl.GRAY);
rl.DrawText(rl.FormatText("Box position Y: %03i", @floatToInt(c_int, boxPositionY)), 10, 40, 20, rl.LIGHTGRAY);
rl.DrawText(rl.TextFormat("Box position Y: %03i", @floatToInt(c_int, boxPositionY)), 10, 40, 20, rl.LIGHTGRAY);
rl.EndDrawing();
//----------------------------------------------------------------------------------