fix mingw build
All checks were successful
Linux arm64 / Build (push) Successful in 2m13s

This commit is contained in:
2025-07-25 11:54:58 +02:00
parent 792bf73e79
commit 7301c40ba9

View File

@@ -151,6 +151,6 @@ bool PiecesFiles::getFilePath(int polyominoSize, std::string& filePath) const {
return false;
}
filePath = dataFolderPath / (std::to_string(polyominoSize) + "minos.bin");
filePath = (dataFolderPath / (std::to_string(polyominoSize) + "minos.bin")).string();
return true;
}