diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/julia_set.c | 1 | ||||
-rw-r--r-- | examples/particles.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/examples/julia_set.c b/examples/julia_set.c index e50a246..c7f7e9b 100644 --- a/examples/julia_set.c +++ b/examples/julia_set.c @@ -83,6 +83,7 @@ i32 main(i32 argc, c8 **argv) { g_platform = (Platform) { .title = "Julia Set", + .pixel_size = 1, .exact_resolution = 1, }; diff --git a/examples/particles.c b/examples/particles.c index 130b5bf..894fee0 100644 --- a/examples/particles.c +++ b/examples/particles.c @@ -118,6 +118,7 @@ i32 main(i32 argc, c8 **argv) { g_platform = (Platform) { .title = "Particles", + .pixel_size = 1, .exact_resolution = 1, }; |