summaryrefslogtreecommitdiff
path: root/music.c
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2006-07-07 02:44:51 +0000
committerbelugas <belugas@openttd.org>2006-07-07 02:44:51 +0000
commit94692a2905efd4be61d726672f5048f9a31cfbb9 (patch)
treed03d3af94e7ce1ddb0e15dba460d980f00d5d203 /music.c
parentd2e0eb8fbf97df3fee5e5a0644e385456f1f3e15 (diff)
downloadopenttd-94692a2905efd4be61d726672f5048f9a31cfbb9.tar.xz
(svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
A song can now be removed from the programmed list (in custom list 1 and 2) by clicking on it. Added music.c[ch] files, to make it all a bit cleaner. Now, the name of the gm file is associated with the title of the song.
Diffstat (limited to 'music.c')
-rw-r--r--music.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/music.c b/music.c
new file mode 100644
index 000000000..80c6dfe51
--- /dev/null
+++ b/music.c
@@ -0,0 +1,28 @@
+/* $Id */
+
+#include "music.h"
+
+const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE] = {
+ {"gm_tt00.gm", "Tycoon DELUXE Theme"},
+ {"gm_tt02.gm", "Easy Driver"},
+ {"gm_tt03.gm", "Little Red Diesel"},
+ {"gm_tt17.gm", "Cruise Control"},
+ {"gm_tt07.gm", "Don't Walk!"},
+ {"gm_tt09.gm", "Fell Apart On Me"},
+ {"gm_tt04.gm", "City Groove"},
+ {"gm_tt19.gm", "Funk Central"},
+ {"gm_tt06.gm", "Stoke It"},
+ {"gm_tt12.gm", "Road Hog"},
+ {"gm_tt05.gm", "Aliens Ate My Railway"},
+ {"gm_tt01.gm", "Snarl Up"},
+ {"gm_tt18.gm", "Stroll On"},
+ {"gm_tt10.gm", "Can't Get There From Here"},
+ {"gm_tt08.gm", "Sawyer's Tune"},
+ {"gm_tt13.gm", "Hold That Train!"},
+ {"gm_tt21.gm", "Movin' On"},
+ {"gm_tt15.gm", "Goss Groove"},
+ {"gm_tt16.gm", "Small Town"},
+ {"gm_tt14.gm", "Broomer's Oil Rag"},
+ {"gm_tt20.gm", "Jammit"},
+ {"gm_tt11.gm", "Hard Drivin'"},
+};