summaryrefslogtreecommitdiff
path: root/src/music.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2011-05-02 16:14:23 +0000
committerrubidium <rubidium@openttd.org>2011-05-02 16:14:23 +0000
commit4d5dbf51707c42c24eeafdb65016b079c54adcf2 (patch)
tree0197dcc17f4a8411ecea2223f356019c902fe7b9 /src/music.cpp
parente9837ff1ec1326aec622366ae29ff1aa81581daf (diff)
downloadopenttd-4d5dbf51707c42c24eeafdb65016b079c54adcf2.tar.xz
(svn r22410) -Document: some more bits ;)
Diffstat (limited to 'src/music.cpp')
-rw-r--r--src/music.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/music.cpp b/src/music.cpp
index a6c8ea78f..de642cc30 100644
--- a/src/music.cpp
+++ b/src/music.cpp
@@ -11,7 +11,7 @@
#include "stdafx.h"
-/* The type of set we're replacing */
+/** The type of set we're replacing */
#define SET_TYPE "music"
#include "base_media_func.h"
@@ -24,6 +24,7 @@ static const char * const _music_file_names[] = {
"new_0", "new_1", "new_2", "new_3", "new_4", "new_5", "new_6", "new_7", "new_8", "new_9",
"ezy_0", "ezy_1", "ezy_2", "ezy_3", "ezy_4", "ezy_5", "ezy_6", "ezy_7", "ezy_8", "ezy_9",
};
+/** Make sure we aren't messing things up. */
assert_compile(lengthof(_music_file_names) == NUM_SONGS_AVAILABLE);
template <class T, size_t Tnum_files, Subdirectory Tsubdir>