Slight style fix

git-svn-id: svn+ssh://svn.gna.org/svn/warzone/trunk@4578 4a71c877-e1ca-e34f-864e-861f7616d084
master
Giel van Schijndel 2008-04-13 12:32:22 +00:00
parent e04da6e653
commit 8e4baea1bf
1 changed files with 5 additions and 4 deletions

View File

@ -190,9 +190,10 @@ GAMECODE gameLoop(void)
}
/* Run the in game interface and see if it grabbed any mouse clicks */
if( (!rotActive) && getWidgetsStatus() &&
(dragBox3D.status != DRAG_DRAGGING) &&
(wallDrag.status != DRAG_DRAGGING) )
if (!rotActive
&& getWidgetsStatus()
&& dragBox3D.status != DRAG_DRAGGING
&& wallDrag.status != DRAG_DRAGGING)
{
intRetVal = intRunWidgets();
}
@ -259,7 +260,7 @@ GAMECODE gameLoop(void)
}
//ajl. get the incoming netgame messages and process them.
if(bMultiPlayer)
if (bMultiPlayer)
{
multiPlayerLoop();
}