aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-12-18 02:35:14 +0000
committerjaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-12-18 02:35:14 +0000
commit070bdf48932aa39e048ed645d6c5ad1a9eaf1309 (patch)
treee6ccdf03c0c6678787da76589e7330944c884260
parentbbda88716432ec68fd686438d291b41f918dc4af (diff)
downloadusdx-070bdf48932aa39e048ed645d6c5ad1a9eaf1309.tar.gz
usdx-070bdf48932aa39e048ed645d6c5ad1a9eaf1309.tar.xz
usdx-070bdf48932aa39e048ed645d6c5ad1a9eaf1309.zip
fixed file name error
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@720 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r--Game/Code/Classes/UAudio_FFMpeg.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/Game/Code/Classes/UAudio_FFMpeg.pas b/Game/Code/Classes/UAudio_FFMpeg.pas
index f050eaea..c3a7228b 100644
--- a/Game/Code/Classes/UAudio_FFMpeg.pas
+++ b/Game/Code/Classes/UAudio_FFMpeg.pas
@@ -262,9 +262,9 @@ begin
av_register_all();
SDL_Init(SDL_INIT_AUDIO);
- StartSoundStream := LoadSoundFromFile(SoundPath + 'Common Start.mp3');
+ StartSoundStream := LoadSoundFromFile(SoundPath + 'Common start.mp3');
{
- BackSoundStream := LoadSoundFromFile(SoundPath + 'Common Back.mp3');
+ BackSoundStream := LoadSoundFromFile(SoundPath + 'Common back.mp3');
SwooshSoundStream := LoadSoundFromFile(SoundPath + 'menu swoosh.mp3');
ChangeSoundStream := LoadSoundFromFile(SoundPath + 'select music change music 50.mp3');
OptionSoundStream := LoadSoundFromFile(SoundPath + 'option change col.mp3');