From c91067c5d1f7f33c1c4a3b3a6ec4e513b8de8498 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Tue, 5 Aug 2014 14:32:39 +0000 Subject: changed default value git-svn-id: http://svn.miranda-ng.org/main/trunk@10073 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Console/src/Console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/Console/src') diff --git a/plugins/Console/src/Console.cpp b/plugins/Console/src/Console.cpp index 481420d37d..ee237b8df7 100644 --- a/plugins/Console/src/Console.cpp +++ b/plugins/Console/src/Console.cpp @@ -1009,7 +1009,7 @@ static void LoadSettings() gWrapLen = db_get_b(NULL, "Console", "Wrap", DEFAULT_WRAPLEN); if ( gWrapLen < MIN_WRAPLEN ) gWrapLen = DEFAULT_WRAPLEN; - gLimit = db_get_dw(NULL, "Console", "Limit", MAX_LIMIT); + gLimit = db_get_dw(NULL, "Console", "Limit", MIN_LIMIT); if (gLimit > MAX_LIMIT) gLimit = MAX_LIMIT; if (gLimit < MIN_LIMIT) gLimit = MIN_LIMIT; } -- cgit v1.2.3