Hi Resolver,
Welcome to the community.
The placement of clear() and update() are really important.
clear() - clears the screen
drawMap() / drawSprite() / <other> - tells Fuze what to draw to the screen at the next update()
update() - draws to the screen
Updating the screen is really slow, so ideally we want to tell Fuze everything that we want to draw (which is much faster) and have draw everything to the screen all at once.
Notice how, on line 22, you are using drawSprites().
There is no update() for the rest of the loop, so we jump from line 38 to line 1, then when we get to line 8 we clear the screen.
So we're getting ready to draw the sprites, but we're clearing before we actually update the screen.
There is a Fuze tutorial series on YouTube and in the 5th video we talk about this in more detail: