This commit is contained in:
tildearrow 2022-03-13 21:19:52 -05:00
parent bfc4432023
commit d9a93e0cec
1 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,10 @@
#include "fileDialog.h"
#include "ImGuiFileDialog.h"
#ifdef __GNUC__
#pragma GCC diagnostic ignored "-Wcast-function-type"
#endif
#include "../../extern/pfd/portable-file-dialogs.h"
bool FurnaceGUIFileDialog::openLoad(String header, std::vector<String> filter, String path, double dpiScale) {
@ -106,4 +111,4 @@ String FurnaceGUIFileDialog::getFileName() {
} else {
return ImGuiFileDialog::Instance()->GetFilePathName();
}
}
}