(svn r22897) -Change: More suitable default news settings instead of everything on 'full'.

This commit is contained in:
frosch
2011-09-05 21:55:05 +00:00
parent 2bdde60397
commit 2981404793
2 changed files with 18 additions and 18 deletions

View File

@@ -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)
{
}