Fix build again

This commit is contained in:
David Hrdlička
2025-08-21 17:41:23 +02:00
committed by GitHub
parent bdaf1cbe55
commit 12a8229b90
2 changed files with 3 additions and 2 deletions

View File

@@ -697,7 +697,8 @@ plat_get_temp_dir(char *outbuf, const uint8_t len)
void
plat_get_vmm_dir(char *outbuf, const size_t len)
{
const auto dir = QDir(QDir::home().filePath("86Box VMs"));
auto dir = QDir::home();
dir.setPath("86Box VMs");
if (!dir.exists()) {
if (!dir.mkpath(".")) {