Merge branch 'master' of github.com:bkaradzic/bgfx

This commit is contained in:
bkaradzic 2013-11-03 17:20:06 -08:00
commit d89801a407

View file

@ -2443,7 +2443,7 @@ int _main_(int /*_argc*/, char** /*_argv*/)
++stateStep;
if (stateStep >= ( (stateChange & ~0x1) >> 1) )
{
currentDirection = (++currentDirection) & directionMask;
currentDirection = (currentDirection + 1) & directionMask;
stateStep = 0;
++stateChange;
}