@@ -405,7 +405,7 @@ int32_t s3_simpleObstacle(int32_t Condition, int32_t Location)
405
405
}
406
406
break ;
407
407
}
408
- - (! result );
408
+ !( result );
409
409
return result ;
410
410
}
411
411
@@ -461,7 +461,7 @@ int32_t s3_simpleLine(int32_t Condition, int32_t Location, int32_t Color)
461
461
}
462
462
}
463
463
}
464
- - (! result );
464
+ !( result );
465
465
return result ;
466
466
}
467
467
@@ -505,7 +505,7 @@ int32_t s3_simpleLight(int32_t Condition, int32_t Location)
505
505
}
506
506
}
507
507
}
508
- - (! result );
508
+ !( result );
509
509
return result ;
510
510
}
511
511
@@ -537,13 +537,13 @@ int32_t s3_simpleStalled(int32_t Condition)
537
537
break ;
538
538
case S3_IS_NOT :
539
539
self -> WasStalled = scribbler_stalled ();
540
- return - (! self -> WasStalled );
540
+ return !( self -> WasStalled );
541
541
break ;
542
542
case S3_WAS :
543
543
return self -> WasStalled ;
544
544
break ;
545
545
case S3_WAS_NOT :
546
- return - (! self -> WasStalled );
546
+ return !( self -> WasStalled );
547
547
break ;
548
548
}
549
549
}
@@ -557,13 +557,13 @@ int32_t s3_simpleButton(int32_t Condition)
557
557
break ;
558
558
case S3_IS_NOT :
559
559
self -> WasButton = scribbler_button_press ();
560
- return - (! self -> WasButton );
560
+ return !( self -> WasButton );
561
561
break ;
562
562
case S3_WAS :
563
563
return self -> WasButton ;
564
564
break ;
565
565
case S3_WAS_NOT :
566
- return - (! self -> WasButton );
566
+ return !( self -> WasButton );
567
567
break ;
568
568
}
569
569
}
@@ -577,13 +577,13 @@ int32_t s3_simpleRandom(int32_t Condition)
577
577
break ;
578
578
case S3_IS_NOT :
579
579
self -> WasRandom = s3_booleanRandom (self );
580
- return - (! self -> WasRandom );
580
+ return !( self -> WasRandom );
581
581
break ;
582
582
case S3_WAS :
583
583
return self -> WasRandom ;
584
584
break ;
585
585
case S3_WAS_NOT :
586
- return - (! self -> WasRandom );
586
+ return !( self -> WasRandom );
587
587
break ;
588
588
}
589
589
}
0 commit comments