aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes/UFiles.pas
diff options
context:
space:
mode:
authorf1fth_freed0m <f1fth_freed0m@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-03-06 01:26:21 +0000
committerf1fth_freed0m <f1fth_freed0m@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-03-06 01:26:21 +0000
commite80ec1918ada3406d9e7cdd6a27b259dfa3bfc3d (patch)
tree950d2b7232953dba0e935f92af94b7c8b8778ff6 /Game/Code/Classes/UFiles.pas
parent70f7e822749b933d9a91be6f11fa108633872f15 (diff)
downloadusdx-e80ec1918ada3406d9e7cdd6a27b259dfa3bfc3d.tar.gz
usdx-e80ec1918ada3406d9e7cdd6a27b259dfa3bfc3d.tar.xz
usdx-e80ec1918ada3406d9e7cdd6a27b259dfa3bfc3d.zip
Translated so Variable Names
Koniec to End_ Wartosc to NoteType Dlugosc to Lenght Ton to Tone Tekst to Text git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@915 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Classes/UFiles.pas')
-rw-r--r--Game/Code/Classes/UFiles.pas4
1 files changed, 2 insertions, 2 deletions
diff --git a/Game/Code/Classes/UFiles.pas b/Game/Code/Classes/UFiles.pas
index 09cc57ec..70c97b88 100644
--- a/Game/Code/Classes/UFiles.pas
+++ b/Game/Code/Classes/UFiles.pas
@@ -115,12 +115,12 @@ begin
//Golden + Freestyle Note Patch
- case Lines.Line[C].Note[N].Wartosc of
+ case Lines.Line[C].Note[N].NoteType of
0: NoteState := 'F ';
1: NoteState := ': ';
2: NoteState := '* ';
end; // case
- S := NoteState + IntToStr(Start-RelativeSubTime) + ' ' + IntToStr(Dlugosc) + ' ' + IntToStr(Ton) + ' ' + Tekst;
+ S := NoteState + IntToStr(Start-RelativeSubTime) + ' ' + IntToStr(Lenght) + ' ' + IntToStr(Tone) + ' ' + Text;
WriteLn(SongFile, S);