summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/file_sys/vfs.h4
-rw-r--r--src/yuzu/main.cpp2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/core/file_sys/vfs.h b/src/core/file_sys/vfs.h
index bf16e7286..141a053ce 100644
--- a/src/core/file_sys/vfs.h
+++ b/src/core/file_sys/vfs.h
@@ -31,8 +31,8 @@ enum class VfsEntryType {
31 Directory, 31 Directory,
32}; 32};
33 33
34// A class representing an abstract filesystem. A default implementation given the root VirtualDir is 34// A class representing an abstract filesystem. A default implementation given the root VirtualDir
35// provided for convenience, but if the Vfs implementation has any additional state or 35// is provided for convenience, but if the Vfs implementation has any additional state or
36// functionality, they will need to override. 36// functionality, they will need to override.
37struct VfsFilesystem : NonCopyable { 37struct VfsFilesystem : NonCopyable {
38 VfsFilesystem(VirtualDir root); 38 VfsFilesystem(VirtualDir root);
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index f7812a392..67e3c6549 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -82,6 +82,8 @@ static void ShowCalloutMessage(const QString& message, CalloutFlag flag) {
82 82
83void GMainWindow::ShowCallouts() {} 83void GMainWindow::ShowCallouts() {}
84 84
85const int GMainWindow::max_recent_files_item;
86
85GMainWindow::GMainWindow() 87GMainWindow::GMainWindow()
86 : config(new Config()), emu_thread(nullptr), 88 : config(new Config()), emu_thread(nullptr),
87 vfs(std::make_shared<FileSys::RealVfsFilesystem>()) { 89 vfs(std::make_shared<FileSys::RealVfsFilesystem>()) {