Dirk Hoffmann

Results 243 comments of Dirk Hoffmann

Disabling write-through mode when a snapshot is loaded is actually a feature: ```c++ void HardDrive::_didLoad() { disableWriteThrough(); // Mark all blocks as dirty dirty.clear(true); } ``` I implemented it that...

The write-protection issue is a simple yet embarrassing bug: ```c++ if (!getFlag(FLAG_PROTECTED)) { // Perform the write operation mem.spypeek (addr, length, data.ptr + offset); // Handle write-through mode if (config.writeThrough)...