Files @ r11869:98a01e945794
Branch filter:

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

frosch
(svn r16268) -Fix (r9876): When callback 2E returns an amount of 0, do not transport 1 unit to the station.
/* $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[];

#endif /* MUSIC_H */