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

@ -60,7 +60,7 @@ pub fn main() anyerror!void
{
// Draw circle and touch index number
rl.DrawCircleV(touchPosition, 34, rl.ORANGE);
rl.DrawText(rl.FormatText("%d", i), @floatToInt(c_int, touchPosition.x) - 10, @floatToInt(c_int, touchPosition.y) - 70, 40, rl.BLACK);
rl.DrawText(rl.TextFormat("%d", i), @floatToInt(c_int, touchPosition.x) - 10, @floatToInt(c_int, touchPosition.y) - 70, 40, rl.BLACK);
}
}