Ignore:
Timestamp:
Sep 4, 2018, 2:33:52 PM (6 years ago)
Author:
alloc
Message:

More cleanup, allocation improvements

File:
1 edited

Legend:

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

    r325 r326  
    5454                        try {
    5555                                lock (cache) {
    56                                         if (cache [zoomlevel].filename != null) {
    57                                                 cache [zoomlevel].data = content;
    58                                                 File.WriteAllBytes (cache [zoomlevel].filename, content);
     56                                        if (cache [zoomlevel].filename == null) {
     57                                                return;
    5958                                        }
     59
     60                                        cache [zoomlevel].data = content;
     61                                        File.WriteAllBytes (cache [zoomlevel].filename, content);
    6062                                }
    6163                        } catch (Exception e) {
Note: See TracChangeset for help on using the changeset viewer.