From dced6f7768e02252af11f9b41017d75c66b47d81 Mon Sep 17 00:00:00 2001 From: Mitya Selivanov Date: Tue, 14 Jan 2025 06:33:54 +0100 Subject: Correct examples for changed graphics procs --- examples/pixels.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/pixels.c') diff --git a/examples/pixels.c b/examples/pixels.c index c47ac35..0579361 100644 --- a/examples/pixels.c +++ b/examples/pixels.c @@ -19,7 +19,7 @@ void update_and_render_frame(void) { Brush white = RGB(1.f, 1.f, 1.f); Brush black = RGB(0.f, 0.f, 0.f); - black.antialiasing = 1; + white.quick = 1; fill_rectangle(white, 0., 0., g_platform.real_width, g_platform.real_height); fill_rectangle(black, x, y, 40., 40.); -- cgit v1.2.3