aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbrunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-12-22 18:56:20 +0000
committerbrunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c>2009-12-22 18:56:20 +0000
commitb17406af2d096cb1db7eb193118dff0c48f4761b (patch)
tree752862c48706fdca1f5eaedeec8fdf016e964a4d
parent115be023b64d9de135a09ab2a63553856eef15d9 (diff)
downloadusdx-b17406af2d096cb1db7eb193118dff0c48f4761b.tar.gz
usdx-b17406af2d096cb1db7eb193118dff0c48f4761b.tar.xz
usdx-b17406af2d096cb1db7eb193118dff0c48f4761b.zip
fix: divide sentence in editor leaded to crash
update of authors.txt and copyright.txt git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2053 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r--AUTHORS.txt1
-rw-r--r--COPYRIGHT.txt1
-rw-r--r--src/screens/UScreenEditSub.pas2
3 files changed, 3 insertions, 1 deletions
diff --git a/AUTHORS.txt b/AUTHORS.txt
index 3f9a0f63..21f2c27a 100644
--- a/AUTHORS.txt
+++ b/AUTHORS.txt
@@ -8,6 +8,7 @@ This modification was continued at Sourceforge.net by the Ultrastar Deluxe Team:
Mischi
Mog
Whiteshark
+ brunzel
~=[ Retired project developers / admins ]=~
Alex
diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt
index cbc9105d..f2a8e249 100644
--- a/COPYRIGHT.txt
+++ b/COPYRIGHT.txt
@@ -6,6 +6,7 @@ list. Contact us (see: AUTHORS) and we'll add you.
Jay Binks "jaybinks"
Dirk Dunger "blindy"
+Alexander Eckart "brunzel"
"eddie-0815"
Mike Gränz "mog"
Tobias Gunkel "tobigun"
diff --git a/src/screens/UScreenEditSub.pas b/src/screens/UScreenEditSub.pas
index 609a689b..10584ce8 100644
--- a/src/screens/UScreenEditSub.pas
+++ b/src/screens/UScreenEditSub.pas
@@ -934,7 +934,7 @@ begin
begin
Inc(HighNote);
SetLength(Note, HighNote + 1);
- Note[HighNote] := Note[N];
+ Note[HighNote] := Lines[0].Line[CStart].Note[N];
End_ := Note[HighNote].Start + Note[HighNote].Length;
if Note[HighNote].Tone < BaseNote then