Fix some reversed logic.

git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@990 ed5b42cb-e716-0410-a449-f6a68f950b19
This commit is contained in:
Mike Thomas
2010-08-18 18:31:23 +00:00
parent e054edeab7
commit 98a09e8d75
@@ -76,7 +76,7 @@ public class MultiFrameBitmap extends Sprite
if (_curFrameIndex == -1) {
return false;
} else {
if (_bitmap.hitTestPoint(stageX, stageY, true)) {
if (!_bitmap.hitTestPoint(stageX, stageY, true)) {
// Doesn't even hit the bounds...
return false;
}