1
0
mirror of synced 2024-11-28 09:30:51 +01:00

fix: Inserting bytes and resizing files not working correctly

This commit is contained in:
WerWolv 2024-02-28 22:21:14 +01:00
parent d5f323a2cd
commit ce9bd796d6

View File

@ -87,6 +87,7 @@ namespace hex::plugin::builtin {
void FileProvider::resizeRaw(u64 newSize) {
m_file.setSize(newSize);
m_fileSize = newSize;
}
void FileProvider::insertRaw(u64 offset, u64 size) {