From 29814047938c083417ec4cea0dd8f66bd92ea444 Mon Sep 17 00:00:00 2001 From: frosch Date: Mon, 5 Sep 2011 21:55:05 +0000 Subject: (svn r22897) -Change: More suitable default news settings instead of everything on 'full'. --- src/news_type.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/news_type.h') 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) { } -- cgit v1.2.3-54-g00ecf