glide2x, sst1, gglide.c: warning fix:

gglide.c: In function `grAlphaCombine':
gglide.c:337: warning: suggest explicit braces to avoid ambiguous `else'
gglide.c: In function `grColorCombine':
gglide.c:917: warning: suggest explicit braces to avoid ambiguous `else'
This commit is contained in:
sezero
2018-08-20 22:30:15 +03:00
parent d2c076b8ab
commit 36dc997a1d

View File

@@ -334,8 +334,9 @@ GR_ENTRY(grAlphaCombine, void, (GrCombineFunction_t function, GrCombineFactor_t
fbzColorPath |= SST_ENTEXTUREMAP;
/* transition into/out of texturing ... add nopCMD */
if(oldTextureEnabled != (fbzColorPath & SST_ENTEXTUREMAP))
if(oldTextureEnabled != (fbzColorPath & SST_ENTEXTUREMAP)) {
P6FENCE_CMD( GR_SET(hw->nopCMD,0) );
}
GR_SET( hw->fbzColorPath, fbzColorPath );
gc->state.fbi_config.fbzColorPath = fbzColorPath;
@@ -914,8 +915,9 @@ GR_ENTRY(grColorCombine, void, ( GrCombineFunction_t function, GrCombineFactor_t
fbzColorPath |= SST_ENTEXTUREMAP;
/* if we transition into/out of texturing ... add nopCMD */
if(oldTextureEnabled != (fbzColorPath & SST_ENTEXTUREMAP))
if(oldTextureEnabled != (fbzColorPath & SST_ENTEXTUREMAP)) {
P6FENCE_CMD( GR_SET(hw->nopCMD,0) );
}
/* update register */
GR_SET( hw->fbzColorPath, fbzColorPath );