From 7301c40ba9123efe735b5d919d0f94dbf08d23b0 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Fri, 25 Jul 2025 11:54:58 +0200 Subject: [PATCH] fix mingw build --- src/Pieces/PiecesFiles.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pieces/PiecesFiles.cpp b/src/Pieces/PiecesFiles.cpp index 26617f8..da491d4 100644 --- a/src/Pieces/PiecesFiles.cpp +++ b/src/Pieces/PiecesFiles.cpp @@ -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; }