Update build system to latest raylib

This commit is contained in:
Not-Nik 2022-03-18 16:57:15 +01:00
parent c83263a8a7
commit ba7b7c97f8
Failed to generate hash of commit
5 changed files with 64 additions and 66 deletions

View file

@ -59,8 +59,7 @@ pub fn main() anyerror!void
if ((touchPosition.x >= 0) and (touchPosition.y >= 0)) // Make sure point is not (-1,-1) as this means there is no touch for it
{
// Draw circle and touch index number
rl.DrawCircle(@floatToInt(c_int, touchPosition.x), @floatToInt(c_int, touchPosition.y), 34, rl.ORANGE);
//DrawCircleV(touchPosition, 34, ORANGE);
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);
}
}