diff options
author | brunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-02-28 20:36:17 +0000 |
---|---|---|
committer | brunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-02-28 20:36:17 +0000 |
commit | 4871039f6f1b55f867e2780013bd10ad16aeaa41 (patch) | |
tree | 0f1b7249a9870eec5dd42ca74b6de5331d80ad84 /Game | |
parent | 154b7014692602ea50a9fc556519a4e9212b2e43 (diff) | |
download | usdx-4871039f6f1b55f867e2780013bd10ad16aeaa41.tar.gz usdx-4871039f6f1b55f867e2780013bd10ad16aeaa41.tar.xz usdx-4871039f6f1b55f867e2780013bd10ad16aeaa41.zip |
changed some error-messages in procedure CheckSong
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/1.0.1 Challenge MOD@2162 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game')
-rw-r--r-- | Game/Code/Classes/UFiles.pas | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Game/Code/Classes/UFiles.pas b/Game/Code/Classes/UFiles.pas index 666bbd88..b3b6e3fd 100644 --- a/Game/Code/Classes/UFiles.pas +++ b/Game/Code/Classes/UFiles.pas @@ -672,13 +672,13 @@ begin if(numNotes=0) then
begin
- Log.LogError('Line ' + IntToStr(line+1) + ' in song ' + AktSong.Path + AktSong.Filename + ' has no notes?');
+ Log.LogError('Sentence ' + IntToStr(line+1) + ' in song ' + AktSong.Path + AktSong.Filename + ' has no notes?');
Exit;
end;
if(bt>Czesci[p].Czesc[line].Start) then
begin
- Log.LogError('Beat error line ' + IntToStr(line+1) + ', beat ' + IntToStr(Czesci[p].Czesc[line].Start) +
+ Log.LogError('Beat error in sentence ' + IntToStr(line+1) + ', on beat ' + IntToStr(Czesci[p].Czesc[line].Start) +
' in song ' + AktSong.Path + AktSong.Filename);
Exit;
end;
@@ -688,7 +688,7 @@ begin begin
if(bt>Czesci[p].Czesc[line].Nuta[note].Start) then
begin
- Log.LogError('Beat error line ' + IntToStr(line+1) + ', beat ' + IntToStr(Czesci[p].Czesc[line].Nuta[note].Start) +
+ Log.LogError('Beat error in sentence ' + IntToStr(line+1) + ', on beat ' + IntToStr(Czesci[p].Czesc[line].Nuta[note].Start) +
' in song ' + AktSong.Path + AktSong.Filename);
Exit;
end;
@@ -703,7 +703,7 @@ begin if (bt+Czesci[p].Czesc[line].Nuta[note].Dlugosc>nextBeat) then
begin
- Log.LogError('Note length error line ' + IntToStr(line+1) + ', beat ' + IntToStr(Czesci[p].Czesc[line].Nuta[note].Start) +
+ Log.LogError('Note length error in sentence ' + IntToStr(line+1) + ', on beat ' + IntToStr(Czesci[p].Czesc[line].Nuta[note].Start) +
' in song ' + AktSong.Path + AktSong.Filename);
Exit;
end;
|