FULLPIPE: Scene06: Fix unpickable ball

This commit is contained in:
Retro-Junk 2016-09-28 01:43:12 +03:00 committed by Eugene Sandulenko
parent 9ca8d65113
commit 8ad7d51029

View File

@ -261,8 +261,7 @@ void sceneHandler06_buttonPush() {
void sceneHandler06_showNextBall() {
if (g_vars->scene06_balls.size()) {
g_vars->scene06_currentBall = new StaticANIObject(g_vars->scene06_balls.front());
g_vars->scene06_balls.remove_at(0);
g_vars->scene06_currentBall = g_vars->scene06_balls.remove_at(0);
MessageQueue *mq = new MessageQueue(g_fp->_currentScene->getMessageQueueById(QU_SC6_SHOWNEXTBALL), 0, 1);