Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cocos2d/actions/CCAction.js
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ cc.Follow = cc.Action.extend(/** @lends cc.Follow# */{
rect = rect || cc.RectZero();
this._followedNode = followedNode;

this._boundarySet = cc.Rect.CCRectEqualToRect(rect, cc.RectZero());
this._boundarySet = !cc.Rect.CCRectEqualToRect(rect, cc.RectZero());

this._boundaryFullyCovered = false;

Expand Down
3 changes: 2 additions & 1 deletion cocos2d/label_nodes/CCLabelAtlas.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ cc.LabelAtlas = cc.AtlasNode.extend(/** @lends cc.LabelAtlas# */{
textureFilename = arg[1];
width = arg[2];
height = arg[3];
startChar = String.fromCharCode(arg[4]);
//startChar = String.fromCharCode(arg[4]);
startChar = arg[4];
cc.Assert(label !== null, "Label must be non-nil");
}

Expand Down