fix compile fail on vs2012.

This commit is contained in:
Dhilan007 2013-10-10 17:17:10 +08:00
parent 0b1079cb8b
commit 5ea5c394e7
1 changed files with 5 additions and 5 deletions

View File

@ -70,11 +70,11 @@ protected:
int subtestNumber; int subtestNumber;
std::vector<float> _vecFPS; std::vector<float> _vecFPS;
int _executeTimes; int _executeTimes;
const int MAX_AUTO_TEST_TIMES = 25; static const int MAX_AUTO_TEST_TIMES = 25;
const int MAX_SPRITE_TEST_CASE = 7; static const int MAX_SPRITE_TEST_CASE = 7;
const int MAX_SUB_TEST_NUMS = 9; static const int MAX_SUB_TEST_NUMS = 9;
const int AUTO_TEST_NODE_NUM1 = 500; static const int AUTO_TEST_NODE_NUM1 = 500;
const int AUTO_TEST_NODE_NUM2 = 1500; static const int AUTO_TEST_NODE_NUM2 = 1500;
}; };
class SpritePerformTest1 : public SpriteMainScene class SpritePerformTest1 : public SpriteMainScene