CocosRobot
|
d07794052f
|
Update license to 2017 (#17362)
* Typo: CopyRight -> Copyright
* Copyright update: chukong-inc.com -> Chukong Technologies Inc.
* [js files] Copyright update: 2014 -> 2014-2017
* [cpp files] Copyright update: 2014 -> 2014-2017
* Copyright update: 2015 -> 2015-2017
* [js files] Copyright update: 2014 -> 2014-2017
* Copyright update: 2016 -> 2016-2017
* Copyright update: 2013 -> 2013-2017
* Copyright update: 201?-201? -> 201?-2017
* License year fixes.
* Liscene year fix in CCRay.cpp
* Updates license years in CCGLProgramState.h & CCGLProgramStateCache.h
|
2017-02-14 14:36:57 +08:00 |
mogemimi
|
eca7b2392d
|
Remove unnecessary inline keywords (#16562)
|
2016-09-12 09:44:21 +08:00 |
James Chen
|
b135d512d2
|
Update copyright to 2016. (#16311)
|
2016-08-05 09:42:15 +08:00 |
andyque
|
602093e474
|
fix extra @ symbol in Base group
|
2015-03-27 12:01:20 +08:00 |
WenhaiLin
|
2caff4e64d
|
[ci skip]Update comments
|
2015-03-24 14:12:58 +08:00 |
WenhaiLin
|
78a8ba7f98
|
[ci skip]Update comments
|
2015-03-23 22:17:59 +08:00 |
tmr111116
|
757bc03ba8
|
fix random int overflow
before:
```
random(2147483648, 2147483649): -2147483648
```
after:
```
random(2147483648, 2147483649): 2147483649
```
code:
```
int64_t min = int64_t(INT_MAX) + 1;
int64_t max = int64_t(INT_MAX) + 2;
auto rand = cocos2d::random(min, max);
CCLOG("random(%lld, %lld): %lld", min, max, rand);
```
|
2015-01-22 16:46:57 +09:00 |
Ricardo Quesada
|
bfb79b6a9e
|
CCRANDOM_() uses std::rand() because it can be seeded with std::srand()
plus other minor fixes in perf tests
|
2014-11-26 20:07:42 -08:00 |
Ricardo Quesada
|
6f3ca63f00
|
Moved base/CCPlatform* -> platform/CCPlatform*
|
2014-09-09 17:17:07 -07:00 |
andyque
|
34629f1014
|
fix windows & win8 & wp8 compile error
|
2014-08-20 12:02:12 +08:00 |
gin0606
|
17aa2833db
|
Fix xcode warning that cause `getEngine` inline expansion
|
2014-08-12 18:07:17 +09:00 |
gin0606
|
89cf0c1e8c
|
fix getEngine
|
2014-08-12 12:01:27 +09:00 |
gin0606
|
5349aa7efb
|
Add ccRandom.h
|
2014-08-07 21:17:36 +09:00 |