added missing *

This commit is contained in:
mightymax 2007-01-10 12:48:23 +00:00
parent 1249531d9d
commit 1341f1360d
1 changed files with 2 additions and 2 deletions

View File

@ -628,7 +628,7 @@ INLINE BOOL renderline_checkWindowInside(GPU *gpu, u8 bgnum, u16 x, u16 y, BOOL
if (!gpu->WINDOW_INCNT.bitfield.WIN1_BG2_Enable) if (!gpu->WINDOW_INCNT.bitfield.WIN1_BG2_Enable)
*draw = FALSE ; /* drawing explicit disabled for thios bg in this rectangle */ *draw = FALSE ; /* drawing explicit disabled for thios bg in this rectangle */
else else
draw = TRUE ; *draw = TRUE ;
break ; break ;
case 3: case 3:
if (!gpu->WINDOW_INCNT.bitfield.WIN1_BG3_Enable) if (!gpu->WINDOW_INCNT.bitfield.WIN1_BG3_Enable)
@ -699,7 +699,7 @@ INLINE BOOL renderline_checkWindowOutside(GPU *gpu, u8 bgnum, u16 x, u16 y, BOOL
*draw = TRUE ; *draw = TRUE ;
break ; break ;
} }
effect = gpu->WINDOW_OUTCNT.bitfield.WIN0_Effect_Enable ; *effect = gpu->WINDOW_OUTCNT.bitfield.WIN0_Effect_Enable ;
return TRUE ; return TRUE ;
} }
} }