altos: Use stdbool true/false instead of TRUE/FALSE
[fw/altos] / src / kernel / ao_sample.c
index 115eae802a2cc9a0daba5d8e2532662f6acc39bd..9cba36c1004b37ec31717e7c4431e08ede4bf615 100644 (file)
@@ -277,7 +277,7 @@ ao_sample_preflight(void)
                ao_accel_scale = to_fix_32(GRAVITY * 2 * 16) / ao_accel_2g;
 #endif
                ao_sample_preflight_set();
-               ao_preflight = FALSE;
+               ao_preflight = false;
        }
 }
 
@@ -398,5 +398,5 @@ ao_sample_init(void)
        ao_sample_set_all_orients();
 #endif
        ao_sample_data = ao_data_head;
-       ao_preflight = TRUE;
+       ao_preflight = true;
 }