Some small example fixes

This commit is contained in:
Not-Nik 2023-07-14 10:59:40 +02:00
parent 02a3dbba61
commit 4bb6b605e4
Failed to generate hash of commit
2 changed files with 2 additions and 2 deletions

View file

@ -59,7 +59,7 @@ pub fn main() anyerror!void {
rl.drawText("Shader-based\ntexture\noutline", 10, 10, 20, rl.Color.gray);
rl.drawText(rl.textFormat("Outline size: %i px", @floatToInt(i32, outlineSize)), 10, 120, 20, rl.Color.maroon);
rl.drawText(rl.textFormat("Outline size: %i px", .{@floatToInt(i32, outlineSize)}), 10, 120, 20, rl.Color.maroon);
rl.drawFPS(710, 10);