Fixing staging buffers not getting deleted

remove vgcore
This commit is contained in:
2023-11-06 15:08:27 +01:00
parent d35f7acddc
commit 4c567b60f3
69 changed files with 505 additions and 304 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ void ArchiveBuffer::seek(int64 s, SeekOp op)
newPos = position + s;
break;
}
assert(newPos >= 0 && newPos < memory.size());
assert(newPos >= 0 && size_t(newPos) < memory.size());
newPos = position;
}