Fixed warning
This commit is contained in:
parent
51526edcb2
commit
5f884c6a51
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ global void UpdateMinimap(void)
|
|||
int h;
|
||||
int h0;
|
||||
|
||||
red_phase_changed = red_phase != ((FrameCounter / FRAMES_PER_SECOND) & 1);
|
||||
red_phase_changed = red_phase != (int)((FrameCounter / FRAMES_PER_SECOND) & 1);
|
||||
if (red_phase_changed) {
|
||||
red_phase = !red_phase;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue