mirror of https://github.com/WerWolv/ImHex.git
fix: Pasting bytes not working at all
This commit is contained in:
parent
bfa3538745
commit
66a13266e6
|
@ -440,7 +440,7 @@ namespace hex::plugin::builtin {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Write bytes
|
// Write bytes
|
||||||
provider->read(start + provider->getBaseAddress() + provider->getCurrentPageAddress(), buffer.data(), std::min(end - start + 1, buffer.size()));
|
provider->write(start + provider->getBaseAddress() + provider->getCurrentPageAddress(), buffer.data(), std::min(end - start + 1, buffer.size()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void ViewHexEditor::copyString() const {
|
void ViewHexEditor::copyString() const {
|
||||||
|
|
Loading…
Reference in New Issue