Minor fix in CCConfiguration.

This commit is contained in:
James Chen 2013-06-05 09:41:03 +08:00
parent 2a16a6b17f
commit 26219d4a14
1 changed files with 3 additions and 3 deletions

View File

@ -236,9 +236,9 @@ void ConfigurationSet::onEnter()
CCConfiguration *conf = CCConfiguration::sharedConfiguration();
conf->setObject("this.is.an.int.key", CCInteger::create(10) );
conf->setObject("this.is.a.bool.key", CCBool::create(true) );
conf->setObject("this.is.a.string.key", CCString::create("hello world") );
conf->setObject("this.is.an.int.value", CCInteger::create(10) );
conf->setObject("this.is.a.bool.value", CCBool::create(true) );
conf->setObject("this.is.a.string.value", CCString::create("hello world") );
conf->dumpInfo();
}