diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2025-01-16 19:09:09 +0100 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2025-01-16 19:09:09 +0100 |
commit | 39aad7f9ca931342f58bf638b5aadd1923db0f50 (patch) | |
tree | 14c39e0a532d60a48227c7b2c023c13004620960 /examples/graph.c | |
parent | 6f72e6bea5d3c18f342a3c460d4ae8a4a776b659 (diff) | |
download | reduced_system_layer-39aad7f9ca931342f58bf638b5aadd1923db0f50.zip |
Graphics fixes
Diffstat (limited to 'examples/graph.c')
-rw-r--r-- | examples/graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/graph.c b/examples/graph.c index 99f916d..f196d3d 100644 --- a/examples/graph.c +++ b/examples/graph.c @@ -502,7 +502,7 @@ void update_and_render_frame(void) { // Render - fill_rectangle((Brush) { .color = { .7f, .8f, .9f, 1.f } }, 0, 0, g_platform.frame_width, g_platform.frame_height); + fill_rectangle((Brush) { .color = { .7f, .8f, .9f, 1.f } }, 0, 0, g_platform.real_width, g_platform.real_height); if (adding_edge) { f64 x0 = world.nodes[adding_src].x; |