diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/file_sys/vfs.h | 4 | ||||
| -rw-r--r-- | src/yuzu/main.cpp | 2 |
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. |
| 37 | struct VfsFilesystem : NonCopyable { | 37 | struct 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 | ||
| 83 | void GMainWindow::ShowCallouts() {} | 83 | void GMainWindow::ShowCallouts() {} |
| 84 | 84 | ||
| 85 | const int GMainWindow::max_recent_files_item; | ||
| 86 | |||
| 85 | GMainWindow::GMainWindow() | 87 | GMainWindow::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>()) { |