summaryrefslogtreecommitdiff
path: root/src/news_type.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2011-09-05 21:55:05 +0000
committerfrosch <frosch@openttd.org>2011-09-05 21:55:05 +0000
commit29814047938c083417ec4cea0dd8f66bd92ea444 (patch)
tree25ee751f2bc22d18bc94914668933f256cbe058f /src/news_type.h
parent2bdde60397932889d6f1718a22f9ad2ae98d041d (diff)
downloadopenttd-29814047938c083417ec4cea0dd8f66bd92ea444.tar.xz
(svn r22897) -Change: More suitable default news settings instead of everything on 'full'.
Diffstat (limited to 'src/news_type.h')
-rw-r--r--src/news_type.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/news_type.h b/src/news_type.h
index edb475d40..d3c668e04 100644
--- a/src/news_type.h
+++ b/src/news_type.h
@@ -126,11 +126,11 @@ struct NewsTypeData {
* @param sound The sound to play.
* @param description The description for this type of messages.
*/
- NewsTypeData(const char *name, byte age, SoundFx sound, StringID description) :
+ NewsTypeData(const char *name, byte age, SoundFx sound, NewsDisplay display, StringID description) :
name(name),
age(age),
sound(sound),
- display(ND_FULL),
+ display(display),
description(description)
{
}