Clean-up Flash.cpp

This commit is contained in:
Clownacy 2019-11-15 20:14:53 +00:00
parent 826abb343f
commit 3bc95d875d

View file

@ -136,7 +136,7 @@ void ActFlash_Flash(void)
void ActFlash(int flx, int fly) void ActFlash(int flx, int fly)
{ {
if (flash.flag == FALSE) if (!flash.flag)
return; return;
switch (flash.mode) switch (flash.mode)
@ -152,7 +152,7 @@ void ActFlash(int flx, int fly)
void PutFlash(void) void PutFlash(void)
{ {
if (flash.flag == FALSE) if (!flash.flag)
return; return;
CortBox(&flash.rect1, gFlashColor); CortBox(&flash.rect1, gFlashColor);