diff options
| author | Kirill Volinsky <mataes2007@gmail.com> | 2014-08-05 14:32:39 +0000 | 
|---|---|---|
| committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-08-05 14:32:39 +0000 | 
| commit | c91067c5d1f7f33c1c4a3b3a6ec4e513b8de8498 (patch) | |
| tree | 00520b63313c5f6885d9876359b39be535df0ace /plugins/Console/src | |
| parent | 4f06582385f14d0c162624c0fe6394e4ea11f39e (diff) | |
changed default value
git-svn-id: http://svn.miranda-ng.org/main/trunk@10073 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Console/src')
| -rw-r--r-- | plugins/Console/src/Console.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
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;
  }
  | 
