in my pixelbox is not loading the map I created
code:
var character = {
x: 60,
y: 60
};
var background = getMap("map");
paper(7);
exports.update = function () {
if (btn.right) character.x = 1;
if (btn.left) character.x -= 1;
if (btn.up) character.y -= 1;
if (btn.down) character.y = 1;
cls();
draw(background, 0, 0);
sprite(153, character.x, character.y);
};
what is wrong?