This commit is contained in:
MihailRis
2025-11-16 18:35:04 +03:00
parent 2a8fa4f2fa
commit 536035441a
5 changed files with 26 additions and 3 deletions
+1 -1
View File
@@ -173,7 +173,7 @@ std::string EnginePaths::createMemoryDevice() {
auto device = std::make_unique<io::MemoryDevice>();
std::string name;
do {
name = std::string("M.") + generate_random_base64<6>();
name = std::string("W.") + generate_random_base64<6>();
} while (std::find(mounted.begin(), mounted.end(), name) != mounted.end());
io::set_device(name, std::move(device));