Ignore:
Timestamp:
Jan 7, 2019, 2:25:43 PM (6 years ago)
Author:
alloc
Message:

Fixed: Rendermap throwing (irrelevant) warnings, rendermap not cleaning up properly after finishing

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/FileCache/MapTileCache.cs

    r331 r346  
    8383                }
    8484
     85                public void ResetTile (int zoomlevel) {
     86                        try {
     87                                lock (cache) {
     88                                        cache [zoomlevel].filename = null;
     89                                        cache [zoomlevel].pngData = null;
     90                                }
     91                        } catch (Exception e) {
     92                                Log.Warning ("Error in MapTileCache.ResetTile: " + e);
     93                        }
     94                }
     95
    8596                public override byte[] GetFileContent (string filename) {
    8697                        try {
Note: See TracChangeset for help on using the changeset viewer.