diff options
author | Michael Brasser <michael.brasser@nokia.com> | 2010-03-03 23:56:03 (GMT) |
---|---|---|
committer | Michael Brasser <michael.brasser@nokia.com> | 2010-03-03 23:56:37 (GMT) |
commit | 7ab3b4d96a0cedb50d2c1ce5bfe9eed315548c4f (patch) | |
tree | f3f0692619279fefec6a89a847e557a1cf23734b /demos | |
parent | 458b710351232d06fb55fb82589c9a097f145379 (diff) | |
download | Qt-7ab3b4d96a0cedb50d2c1ce5bfe9eed315548c4f.zip Qt-7ab3b4d96a0cedb50d2c1ce5bfe9eed315548c4f.tar.gz Qt-7ab3b4d96a0cedb50d2c1ce5bfe9eed315548c4f.tar.bz2 |
Fix Samegame.
Diffstat (limited to 'demos')
-rwxr-xr-x | demos/declarative/samegame/SamegameCore/samegame.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/declarative/samegame/SamegameCore/samegame.js b/demos/declarative/samegame/SamegameCore/samegame.js index c0f10bd..1214b79 100755 --- a/demos/declarative/samegame/SamegameCore/samegame.js +++ b/demos/declarative/samegame/SamegameCore/samegame.js @@ -4,7 +4,7 @@ var maxX = 10;//Nums are for gameCanvas.tileSize 40 var maxY = 15; var maxIndex = maxX*maxY; var board = new Array(maxIndex); -var tileSrc = "content/BoomBlock.qml"; +var tileSrc = "SamegameCore/BoomBlock.qml"; var scoresURL = "http://qtfx-nokia.trolltech.com.au/samegame/scores.php"; var scoresURL = ""; var timer; |