Ignore:
Timestamp:
Apr 28, 2016, 7:31:35 PM (9 years ago)
Author:
alloc
Message:

Fixed Web log

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Web/LogBuffer.cs

    r253 r270  
    88{
    99        public class LogBuffer {
    10                 private const int MAX_ENTRIES = 30;
     10                private const int MAX_ENTRIES = 3000;
    1111                private static LogBuffer instance;
    1212
     
    108108                                }
    109109
     110                                int index = _start - listOffset;
     111
     112                                if (index + _count > logEntries.Count) {
     113                                        _count = logEntries.Count - index;
     114                                }
     115
    110116                                _end = _start + _count;
    111                                 return logEntries.GetRange (_start - listOffset, _count);
     117
     118                                return logEntries.GetRange (index, _count);
    112119                        }
    113120                }
Note: See TracChangeset for help on using the changeset viewer.