diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-05-18 18:06:54 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-05-18 18:06:54 +0000 |
commit | ab2634e9b83cb44ad7d5a8b54a397b8c22a78778 (patch) | |
tree | 8c417f95f7986afebb4628d9a77884d2ae05dfa1 /Game/Code | |
parent | 7bf5487faf2b099ced0b2126c2cca164be80acf1 (diff) | |
download | usdx-ab2634e9b83cb44ad7d5a8b54a397b8c22a78778.tar.gz usdx-ab2634e9b83cb44ad7d5a8b54a397b8c22a78778.tar.xz usdx-ab2634e9b83cb44ad7d5a8b54a397b8c22a78778.zip |
Fixed a Bug in Jump to Menu that causes a Wrong Song is Played, when the first Song is in the Results and Tabs=off. LastPlayed Variable was not set correctly.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@221 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code')
-rw-r--r-- | Game/Code/Screens/UScreenSongJumpto.pas | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Game/Code/Screens/UScreenSongJumpto.pas b/Game/Code/Screens/UScreenSongJumpto.pas index 42aedf3c..cfb897a8 100644 --- a/Game/Code/Screens/UScreenSongJumpto.pas +++ b/Game/Code/Screens/UScreenSongJumpto.pas @@ -187,6 +187,8 @@ begin //Select Input
Interaction := 0;
Button[0].Text[0].Selected := True;
+
+ LastPlayed := ScreenSong.Interaction;
end;
function TScreenSongJumpto.Draw: boolean;
|