Pass file_system to process_context::setup

This commit is contained in:
ahm3dgg
2026-01-06 09:16:45 +02:00
parent b642486bc4
commit 725c7e3e9c
3 changed files with 7 additions and 7 deletions

View File

@@ -362,7 +362,7 @@ void windows_emulator::setup_process(const application_settings& app_settings)
const auto apiset_data = apiset::obtain(this->emulation_root);
this->process.setup(this->emu(), this->memory, this->registry, app_settings, *executable, *ntdll, apiset_data,
this->process.setup(this->emu(), this->memory, this->registry, this->file_sys, app_settings, *executable, *ntdll, apiset_data,
this->mod_manager.wow64_modules_.ntdll32);
const auto ntdll_data = emu.read_memory(ntdll->image_base, static_cast<size_t>(ntdll->size_of_image));