[Glide64] Fix some warnings

This commit is contained in:
zilmar 2016-11-28 07:24:11 +11:00
parent ebaee14229
commit 1a49b48282
2 changed files with 2 additions and 2 deletions

View File

@ -2633,7 +2633,7 @@ static void rdp_setcolorimage()
{
if (rdp.ci_count == 0)
{
if ((rdp.ci_status == ci_aux)) //for PPL
if (rdp.ci_status == ci_aux) //for PPL
{
float sx = rdp.scale_x;
float sy = rdp.scale_y;

View File

@ -62,7 +62,7 @@ static void fb_bg_copy()
if (rdp.main_ci == 0)
return;
CI_STATUS status = rdp.frame_buffers[rdp.ci_count - 1].status;
if ((status == ci_copy))
if (status == ci_copy)
return;
uint32_t addr = segoffset(rdp.cmd1) >> 1;