Browse Source

vfs: Fix documentation

nce_cpp
Zach Hilman 7 years ago
parent
commit
e883f6faa8
  1. 4
      src/core/file_sys/vfs.h
  2. 2
      src/yuzu/main.cpp

4
src/core/file_sys/vfs.h

@ -31,8 +31,8 @@ enum class VfsEntryType {
Directory, Directory,
}; };
// A class representing an abstract filesystem. A default implementation given the root VirtualDir is
// provided for convenience, but if the Vfs implementation has any additional state or
// A class representing an abstract filesystem. A default implementation given the root VirtualDir
// is provided for convenience, but if the Vfs implementation has any additional state or
// functionality, they will need to override. // functionality, they will need to override.
struct VfsFilesystem : NonCopyable { struct VfsFilesystem : NonCopyable {
VfsFilesystem(VirtualDir root); VfsFilesystem(VirtualDir root);

2
src/yuzu/main.cpp

@ -82,6 +82,8 @@ static void ShowCalloutMessage(const QString& message, CalloutFlag flag) {
void GMainWindow::ShowCallouts() {} void GMainWindow::ShowCallouts() {}
const int GMainWindow::max_recent_files_item;
GMainWindow::GMainWindow() GMainWindow::GMainWindow()
: config(new Config()), emu_thread(nullptr), : config(new Config()), emu_thread(nullptr),
vfs(std::make_shared<FileSys::RealVfsFilesystem>()) { vfs(std::make_shared<FileSys::RealVfsFilesystem>()) {

Loading…
Cancel
Save