diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-01-06 23:41:27 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-01-06 23:41:27 +0100 |
commit | eab2433a2daee814492548b95f16892adde0908d (patch) | |
tree | e08d2b82fc3525d937bb64475da5543b4628158c /examples/graph.c | |
parent | 3359f068dc9e8ac036f0f709aeccf11dfba3cf03 (diff) | |
download | reduced_system_layer-eab2433a2daee814492548b95f16892adde0908d.zip |
Impl rendering in AudioWorklet
Diffstat (limited to 'examples/graph.c')
-rwxr-xr-x | examples/graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/graph.c b/examples/graph.c index dc4b226..6ad5fdc 100755 --- a/examples/graph.c +++ b/examples/graph.c @@ -531,7 +531,7 @@ void update_and_render_frame(void) { // Render - fill_rectangle(OP_SET, 0xffffff, 0, 0, platform.frame_width, platform.frame_height); + fill_rectangle(OP_SET, 0xa0b0c0, 0, 0, platform.frame_width, platform.frame_height); if (adding_edge) { f64 x0 = world.nodes[adding_src].x; |