It’s probably not the issue, but in this line:
local piece = display.newImage(piecesImageSheet, piecesSheetInfo:getFrameIndex(pieces[i].color), display.isFullResolution)
display.isFullResolution isn’t valid, unless you previously declared it. “isFullResolution” isn’t an inherent property of the display library.
Try this somewhere in your code:
print(display.isFullResolution)
Now look at the Terminal… most likely it will print “nil” in there, which means it’s not a defined or existing property. What you want to enter instead is true.
As for that “sprite regression” issue, it sounds like it was something introduced in Build 926 and fixed shortly after in Build 929… so it wouldn’t affect Build 894. It’s possible there’s another bug (which is what we’re trying to determine), but I don’t think it’s that one in specific.
Brent
[import]uid: 9747 topic_id: 32544 reply_id: 129688[/import]