Renaming xe::fs to xe::filesystem and xe::kernel::fs to xe::vfs.

Progress on #294.
This commit is contained in:
Ben Vanik
2015-06-27 13:31:21 -07:00
parent bc75b0ab87
commit 0716cf84c0
45 changed files with 374 additions and 428 deletions

View File

@@ -16,7 +16,7 @@
#include <mutex>
#include "xenia/base/fs.h"
#include "xenia/base/filesystem.h"
#include "xenia/base/logging.h"
#include "xenia/base/string.h"
#include "xenia/base/threading.h"
@@ -73,7 +73,7 @@ bool Debugger::StartSession() {
auto session_path = xe::to_wstring(FLAGS_debug_session_path);
if (!session_path.empty()) {
session_path = xe::to_absolute_path(session_path);
xe::fs::CreateFolder(session_path);
xe::filesystem::CreateFolder(session_path);
}
functions_path_ = xe::join_paths(session_path, L"functions");