Skip to content

Commit 3e10907

Browse files
Fixed copy paste fail, lock()-ing the EngineLock twice, instead of lock()-ing and unlock()-ing it.
1 parent 6aa4fd8 commit 3e10907

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/andengine/examples/SpriteRemoveExample.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ public boolean onSceneTouchEvent(final Scene pScene, final TouchEvent pSceneTouc
105105
this.mFaceToRemove.dispose();
106106
this.mFaceToRemove = null;
107107

108-
engineLock.lock();
108+
engineLock.unlock();
109109
return true;
110110
}
111111

0 commit comments

Comments
 (0)