src/music.cpp
author rubidium
Thu, 18 Dec 2008 12:23:08 +0000
changeset 10436 8d3a9fbe8f19
parent 9111 48ce04029fe4
permissions -rw-r--r--
(svn r14689) -Change: make configure die on commonly made user mistakes, like not having SDL development files or zlib headers installed; you can still compile a dedicated server or a binary without zlib, but you have to explicitly force it.
4199
08c830893ab2 (svn r5670) - The keyword is $Id$ not $Id :)
Darkvater
parents: 4120
diff changeset
     1
/* $Id$ */
4120
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
     2
9111
48ce04029fe4 (svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
rubidium
parents: 8812
diff changeset
     3
/** @file music.cpp The songs that OpenTTD knows. */
6201
bee01dc45e39 (svn r8987) -Cleanup: doxygen changes. Again. Mostly (still) @files missing tags and (more than just) a few comments style.
belugas
parents: 5584
diff changeset
     4
8812
4fd6de597c6e (svn r12557) -Cleanup: use MAX_PATH at two more places
smatz
parents: 6201
diff changeset
     5
#include "stdafx.h"
4120
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
     6
#include "music.h"
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
     7
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
     8
const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE] = {
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
     9
	{"gm_tt00.gm", "Tycoon DELUXE Theme"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    10
	{"gm_tt02.gm", "Easy Driver"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    11
	{"gm_tt03.gm", "Little Red Diesel"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    12
	{"gm_tt17.gm", "Cruise Control"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    13
	{"gm_tt07.gm", "Don't Walk!"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    14
	{"gm_tt09.gm", "Fell Apart On Me"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    15
	{"gm_tt04.gm", "City Groove"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    16
	{"gm_tt19.gm", "Funk Central"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    17
	{"gm_tt06.gm", "Stoke It"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    18
	{"gm_tt12.gm", "Road Hog"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    19
	{"gm_tt05.gm", "Aliens Ate My Railway"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    20
	{"gm_tt01.gm", "Snarl Up"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    21
	{"gm_tt18.gm", "Stroll On"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    22
	{"gm_tt10.gm", "Can't Get There From Here"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    23
	{"gm_tt08.gm", "Sawyer's Tune"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    24
	{"gm_tt13.gm", "Hold That Train!"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    25
	{"gm_tt21.gm", "Movin' On"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    26
	{"gm_tt15.gm", "Goss Groove"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    27
	{"gm_tt16.gm", "Small Town"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    28
	{"gm_tt14.gm", "Broomer's Oil Rag"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    29
	{"gm_tt20.gm", "Jammit"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    30
	{"gm_tt11.gm", "Hard Drivin'"},
b21fda0c260a (svn r5464) [Behaviour Fix] : When starting the game, the system will now verify the presence of music files in gm forlder.
belugas
parents:
diff changeset
    31
};