We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b5b050 commit 9274ba7Copy full SHA for 9274ba7
JewelBoard.cpp
@@ -136,7 +136,7 @@ void JewelBoard::shiftDown(BoardPos pos)
136
LOG_INFO("jewel " << next << " popped up (dead: " << getJewel(next).isDead() << ")" );
137
138
pureSwap(pos, next);
139
- //m_model.pureSwap(pos, next);
+ m_model.pureSwap(pos, next);
140
//it will be set to falling again if lower jewel is detected to be empty
141
getJewel(next).resetFalling();
142
getJewel(pos).resetFalling();
JewelObject.cpp
@@ -11,7 +11,7 @@
11
#include "TextureManager.h"
12
#include "Game.h"
13
14
-const short JewelObject::FALLING_STEPS = 300;
+const short JewelObject::FALLING_STEPS = 100;
15
16
JewelObject::JewelObject(Jewel &jewel, bool firstRow) :
17
m_model(&jewel),
0 commit comments