Problems with Robot Toast
This report is about Robot Toast.When select the 'play' option I get this error message:
juanjo@albus:~/Desktop/Pyweek6-juegos/robot_toast$ python run_game.py 62 FPS Loading level Error occurred loading Wilhelm.ogg from data/sounds/Wilhelm.ogg
It seems that the original filename is called wilhelm.ogg (no caps). May be it was developed under Windows? I am running Ubuntu.
Solved with:
juanjo@albus:~/Desktop/Pyweek6-juegos/robot_toast$ mv data/sounds/wilhelm.ogg data/sounds/Wilhelm.ogg
(log in to comment)
Comments
lib/sprites.py line 473: Change Wilhelm.ogg to wilhelm.ogg
If you rename the file, you'll fix it for one and break it later on. You'll either need to COPY the file so you have BOTH spellings, or fix the code as mentioned above.
Sorry everybody!
richard on 2008/04/07 03:19:
Please add to the wiki, thanks!