summaryrefslogtreecommitdiff
path: root/settings.c
diff options
context:
space:
mode:
Diffstat (limited to 'settings.c')
-rw-r--r--settings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/settings.c b/settings.c
index 0c285a2c0..e1d9dfd22 100644
--- a/settings.c
+++ b/settings.c
@@ -1061,7 +1061,7 @@ void CheckConfig(void)
// fix up news_display_opt from old to new
int i;
uint32 tmp;
- for (i = 0, tmp = _news_display_opt; i != 10; i++, tmp >>= 1) {
+ for (i = 0, tmp = _news_display_opt; i != 10; i++, tmp >>= 2) {
if ((tmp & 0x3) == 0x3) { // old settings
_news_display_opt = 0xAAAAAAAA; // set all news-messages to full 1010101010...
break;