]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Removed a couple of warnings when compiling with GCC
authormolivier <molivier@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 10 Dec 2004 10:55:22 +0000 (10:55 +0000)
committermolivier <molivier@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 10 Dec 2004 10:55:22 +0000 (10:55 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4833 d7cf8633-e32d-0410-b094-e92efae38249

cl_video.c

index 2d6069e69c01a822bedbf98a71263fc17bc54373..70053f1b557fe2aae4387ad54ed8dfa9c7a3931b 100644 (file)
@@ -122,10 +122,12 @@ clvideo_t* CL_GetVideo( char *name )
        video = &videoarray[ i ];
 
        if( video->suspended )
+       {
                if( !WakeVideo( video ) )
                        return NULL;
                else if( video->state == CLVIDEO_RESETONWAKEUP ) 
                        video->framenum = -1;
+       }
 
        video->lasttime = realtime;
 
@@ -205,12 +207,14 @@ void CL_VideoFrame( void ) // update all videos
 
        for( video = videoarray, i = 0 ; i < MAXCLVIDEOS ; video++, i++ )
                if( video->state != CLVIDEO_UNUSED && !video->suspended )
+               {
                        if( realtime - video->lasttime > CLTHRESHOLD )
                                SuspendVideo( video );
                        else if( video->state == CLVIDEO_PAUSE )
                                video->starttime = realtime - video->framenum * video->framerate;
                        else 
                                VideoFrame( video );
+               }
 
        if( videoarray->state == CLVIDEO_FIRSTFRAME )
                CL_VideoStop();