Fixed missing vector again

This commit is contained in:
Ryzerth 2021-04-29 20:51:26 +02:00
parent a6df90785a
commit f483de1f7e
2 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,6 @@
#include <options.h>
#include <filesystem>
#include <gui/file_dialogs.h>
#include <vector>
FileSelect::FileSelect(std::string defaultPath, std::vector<std::string> filter) {
_filter = filter;

View File

@ -4,6 +4,7 @@
#include <stdint.h>
#include <string>
#include <thread>
#include <vector>
class FileSelect {
public: