diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-01-14 06:33:54 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-01-14 06:33:54 +0100 |
commit | dced6f7768e02252af11f9b41017d75c66b47d81 (patch) | |
tree | 008f4cb816a09b776013d5903b34fb89c01cf042 /examples/pixels.c | |
parent | c9208089c6074575342d529f494295c13269a1aa (diff) | |
download | reduced_system_layer-dced6f7768e02252af11f9b41017d75c66b47d81.zip |
Correct examples for changed graphics procs
Diffstat (limited to 'examples/pixels.c')
-rw-r--r-- | examples/pixels.c | 2 |
1 files changed, 1 insertions, 1 deletions
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.); |