aboutsummaryrefslogtreecommitdiffstats
path: root/demos/applications/mandelbrot/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/applications/mandelbrot/main.c')
-rw-r--r--demos/applications/mandelbrot/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/applications/mandelbrot/main.c b/demos/applications/mandelbrot/main.c
index 37e0ac5f..808ef1c2 100644
--- a/demos/applications/mandelbrot/main.c
+++ b/demos/applications/mandelbrot/main.c
@@ -72,7 +72,7 @@ int main(void) {
cx = -0.086f;
cy = 0.85f;
- while(TRUE) {
+ while(1) {
mandelbrot(-2.0f*zoom+cx, -1.5f*zoom+cy, 2.0f*zoom+cx, 1.5f*zoom+cy);
zoom *= 0.7f;