mirror of https://github.com/axmolengine/axmol.git
Tiny comment fix in ccConfig.h (#18483)
This commit is contained in:
parent
14bca227e8
commit
602b9e51f2
|
@ -58,7 +58,7 @@ THE SOFTWARE.
|
||||||
* It is recommended to enable whenever possible to improve speed.
|
* It is recommended to enable whenever possible to improve speed.
|
||||||
* If you are migrating your code from GL ES 1.1, then keep it disabled. Once all your code works as expected, turn it on.
|
* If you are migrating your code from GL ES 1.1, then keep it disabled. Once all your code works as expected, turn it on.
|
||||||
|
|
||||||
* Default value: Enabled by default
|
* Enabled by default.
|
||||||
|
|
||||||
* @since v2.0.0
|
* @since v2.0.0
|
||||||
*/
|
*/
|
||||||
|
@ -323,11 +323,10 @@ THE SOFTWARE.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/** When CC_ENABLE_SCRIPT_BINDING and CC_ENABLE_GC_FOR_NATIVE_OBJECTS are both 1
|
/** When CC_ENABLE_SCRIPT_BINDING and CC_ENABLE_GC_FOR_NATIVE_OBJECTS are both 1
|
||||||
then the Garbage collector will release the native objects, only when the JS/Lua objects
|
* then the Garbage collector will release the native objects, only when the JS/Lua objects
|
||||||
are collected.
|
* are collected.
|
||||||
The benefit is that users don't need to retain/release the JS/Lua objects manually.
|
* The benefit is that users don't need to retain/release the JS/Lua objects manually.
|
||||||
|
* Disabled by default.
|
||||||
By default this behavior is disabled by default
|
|
||||||
*/
|
*/
|
||||||
#ifdef CC_ENABLE_SCRIPT_BINDING
|
#ifdef CC_ENABLE_SCRIPT_BINDING
|
||||||
#ifndef CC_ENABLE_GC_FOR_NATIVE_OBJECTS
|
#ifndef CC_ENABLE_GC_FOR_NATIVE_OBJECTS
|
||||||
|
|
Loading…
Reference in New Issue