diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/savage_video.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/savage_video.c b/src/savage_video.c index 64dcef1..45b082b 100644 --- a/src/savage_video.c +++ b/src/savage_video.c @@ -1469,7 +1469,7 @@ SavageDisplayVideoOld( if( psav->videoFourCC != id ) SavageStreamsOff(pScrn); - if( !psav->videoFlags & VF_STREAMS_ON ) + if( !(psav->videoFlags & VF_STREAMS_ON) ) { SavageSetBlend(pScrn,id); SavageStreamsOn(pScrn); @@ -1612,7 +1612,7 @@ SavageDisplayVideoNew( if( psav->videoFourCC != id ) SavageStreamsOff(pScrn); - if( !psav->videoFlags & VF_STREAMS_ON ) + if( !(psav->videoFlags & VF_STREAMS_ON) ) { SavageSetBlend(pScrn,id); SavageStreamsOn(pScrn); @@ -1746,7 +1746,7 @@ SavageDisplayVideo2000( if( psav->videoFourCC != id ) SavageStreamsOff(pScrn); - if( !psav->videoFlags & VF_STREAMS_ON ) + if( !(psav->videoFlags & VF_STREAMS_ON) ) { SavageSetBlend(pScrn,id); SavageStreamsOn(pScrn); |