Commit 8d78f2422af168eaa5ec3db4b2da075e337f1462

Forgot to add new tilesets to Makefile.am and made another small fix to sprite
rendering.
ChangeLog
(3 / 0)
  
1111 * src/game.cpp, README, data/helps/commands.txt: Introduced new window
1212 shortcuts.
1313 * src/gui/status.cpp: Corrected position of job XP bar.
14 * src/data/graphics/tiles/Makefile.am: Forgot to add new tilesets
15 here.
16 * src/map.cpp: Another small fix to sprite rendering.
1417
15182005-10-09 Yohann Ferreira <bertram@cegetel.net>
1619
  
118118 // tiles have been drawn
119119 if (layer == 1)
120120 {
121 while (si != mSprites.end() && (*si)->getPixelY() < y * 32)
121 while (si != mSprites.end() && (*si)->getPixelY() <= y * 32 - 32)
122122 {
123123 (*si)->draw(graphics, -scrollX, -scrollY);
124124 si++;