cache/FrameDumperTest: Don't get the wrong framemaps for a frame

This commit is contained in:
Max Weber
2019-07-03 08:45:24 -06:00
parent 23197077a6
commit 911893b710

View File

@@ -88,7 +88,7 @@ public class FrameDumper
int framemapArchiveId = (contents[0] & 0xff) << 8 | contents[1] & 0xff;
Archive framemapArchive = framemapIndex.getArchives().get(framemapArchiveId);
Archive framemapArchive = framemapIndex.getArchive(framemapArchiveId);
archiveData = storage.loadArchive(framemapArchive);
byte[] framemapContents = framemapArchive.decompress(archiveData);