Files @ r10526:06dd4f1e1e4b
Branch filter:

Location: cpp/openttd-patchpack/source/src/music.h

rubidium
(svn r14783) -Fix (r12661): don't add vehicles with "go to nearest depot" to the vehicle list of the depot with index 0.
/* $Id$ */

/** @file music.h Base for the music handling. */

#ifndef MUSIC_H
#define MUSIC_H

#define NUM_SONGS_PLAYLIST 33
#define NUM_SONGS_AVAILABLE 22

struct SongSpecs {
	char filename[MAX_PATH];
	char song_name[64];
};

extern const SongSpecs origin_songs_specs[NUM_SONGS_AVAILABLE];

#endif //MUSIC_H