problem with loadSound testing on Mac

I’m trying to get two short wav files to work, they are both playing OK with Corona for Windows, but on Mac i get the following warning in the terminal:

WARNING: Failed to create audio sound (success.wav)
WARNING: Failed to create audio sound (fail.wav)

These are the loadSound calls from my code:

--load sounds  
successSound = audio.loadSound( "success.wav" )  
failSound = audio.loadSound( "fail.wav" )  

The two files are spelled correctly, play correcty on external sound players, and are in the same base directory as main.lua.

please help!
Thanks [import]uid: 33608 topic_id: 7563 reply_id: 307563[/import]

solved the problem.

It appears that Corona for mac and the actual iPhone did not work with 8-bit wav files, so I just converted the files to 16-bit and the problem was solved. [import]uid: 33608 topic_id: 7563 reply_id: 26845[/import]