Put brackets around a possible empty macro.

This commit is contained in:
riccardom 2009-01-26 19:52:42 +00:00
parent 23cffd809c
commit a87501a235
1 changed files with 3 additions and 1 deletions

View File

@ -431,7 +431,9 @@ u16 GPU::blend(u16 colA, u16 colB)
void GPU_setMasterBrightness (GPU *gpu, u16 val)
{
if(!nds.isInVblank()) PROGINFO("Changing master brightness outside of vblank\n");
if(!nds.isInVblank()) {
PROGINFO("Changing master brightness outside of vblank\n");
}
gpu->MasterBrightFactor = (val & 0x1F);
gpu->MasterBrightMode = (val>>14);
}